-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
76 lines (69 loc) · 2.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from setuptools import setup, find_packages
CLASSIFIERS = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
with open("README.md", "r", encoding="UTF8") as readme_file:
LONG_DESCRIPTION = readme_file.read()
with open("HISTORY.md", "r", encoding="UTF8") as history_file:
HISTORY = history_file.read()
requirements = [
"numpy>=1.16",
"lxml>=4.3.3",
"networkx>=2.5",
"matplotlib>=3.0.0",
"pandas>=version='1.0.1'",
"click>=8.0",
"python-decouple>=3.3",
]
test_requirements = [
"pytest>=3",
]
dev_requirements = [
"sphinx==3.2.1",
"recommonmark==0.6.0",
"pytest==6.1.1",
"bump2version==version='1.0.1'",
"twine==3.2.0",
"black==19.10b0",
"pylint==2.6.0",
"sphinx-rtd-theme==0.5.0",
"tox==3.20.0",
"coverage==5.3",
"flake8==3.8.4",
]
setup(
name="ensemble",
version="1.0.1",
description="A command line interface to launch scenarios for the ENSEMBLE project ",
long_description=LONG_DESCRIPTION + "\n\n" + HISTORY,
long_description_content_type="text/markdown",
author="Andres Ladino",
author_email="[email protected]",
maintainer="Andres Ladino",
maintainer_email="[email protected]",
url="https://ci.tno.nl/gitlab/paco.hamers-tno/ensemble_drivermodel",
download_url="https://ci.tno.nl/gitlab/paco.hamers-tno/ensemble_drivermodel",
packages=find_packages(
include=["ensemble", "ensemble.*", "*.ini", "*.xml", "*.xsd"]
),
classifiers=CLASSIFIERS,
keywords="ensemble, truck platooning",
include_package_data=True,
package_data={"": ["*.ini", "*.xml", "*.xsd"],},
install_requires=requirements,
entry_points={"console_scripts": ["ensemble=ensemble.cli:main"]},
extra_require={"dev": dev_requirements},
python_requires=">=3.7",
test_suite="tests",
tests_require=test_requirements,
zip_safe=False,
)