forked from pyoscx/scenariogeneration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 739 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="scenariogeneration",
version="0.2.0",
author="Mikael Andersson, Irene Natale",
author_email="[email protected], [email protected]",
description="Generation of OpenSCENARIO and OpenDRIVE xml files",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pyoscx/scenariogeneration",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MPL-2.0",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)