forked from fiefdx/pyopendriveparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 653 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='opendriveparser',
version='1.0',
description='Parser for files in OpenDRIVE format, offers additional functions to navigate through the road network',
author='Stefan Urban',
author_email='stefan.urban@live.de',
url='https://github.com/stefan-urban/pyopendriveparser',
packages=find_packages(),
dependency_links=[
'https://github.com/stefan-urban/pyeulerspiral/archive/master.zip#egg=pyeulerspiral-1.0',
],
install_requires=[
"numpy",
"lxml",
'pyeulerspiral==1.0',
]
)