Skip to content
Snippets Groups Projects
Commit cfd2cc30 authored by li213's avatar li213
Browse files

preparing for repeatability

parent 06fe01cb
No related branches found
No related tags found
2 merge requests!9Tutorial,!8Simple sim
...@@ -12,23 +12,23 @@ setup( ...@@ -12,23 +12,23 @@ setup(
packages=find_packages(exclude=["tests", "demo"]), packages=find_packages(exclude=["tests", "demo"]),
python_requires='>=3.8', python_requires='>=3.8',
install_requires=[ install_requires=[
"numpy~=1.22.1", "numpy",
"scipy~=1.8.1", "scipy",
"matplotlib~=3.4.2", "matplotlib",
"polytope~=0.2.3", "polytope",
"pyvista~=0.32.1", "pyvista",
"networkx~=2.2", "networkx",
"sympy~=1.6.2", "sympy",
"six~=1.14.0", "six",
"astunparse~=1.6.3", "astunparse",
"treelib~=1.6.1", "treelib",
"z3-solver~=4.8.17.0", "z3-solver",
"igraph~=0.9.10", "plotly",
"plotly~=5.8.0", "beautifulsoup4",
"beautifulsoup4~=4.11.1", "lxml",
"lxml~=4.9.1",
"torch", "torch",
"tqdm" "tqdm",
"intervaltree",
], ],
classifiers=[ classifiers=[
'Development Status :: 2 - Pre-Alpha', 'Development Status :: 2 - Pre-Alpha',
......
#Import all the lane objects we are going to use for lane object identification################ #Import all the lane objects we are going to use for lane object identification################
from turtle import right
import numpy as np #Numpy library to do the calculations import numpy as np #Numpy library to do the calculations
import matplotlib.pyplot as plt #Matplotlib library to visualize the roads import matplotlib.pyplot as plt #Matplotlib library to visualize the roads
from bs4 import BeautifulSoup #Beautiful Soup library for parsing data in python from bs4 import BeautifulSoup #Beautiful Soup library for parsing data in python
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment