-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (63 loc) · 1.93 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
"""A setuptools based setup module."""
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.md'), encoding='utf-8') as file:
LONG_DESCRIPTION = file.read()
setup(
name='tsim',
version='0.0.1',
description='Agent based traffic simulator.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://gitlab.com/eduardomezencio/tsim',
author='Eduardo Mezêncio',
author_email='[email protected]',
classifiers=[ # https://pypi.org/classifiers/
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Topic :: Games/Entertainment :: Simulation'
],
keywords='traffic simulation agent-based',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
python_requires='>=3.9, <4',
install_requires=[
'aggdraw>=1.3.12',
'bezier>=2021.2.12',
'dataslots>=1.0.2',
'fibonacci-heap-mod>=1.1',
'intervaltree>=3.1.0',
'numpy>=1.20.1',
'orderedset>=2.0.3',
'panda3d>=1.10.8',
'Pillow>=8.1.2',
'Rtree>=0.9.7'
],
extras_require={
'dev': [
'flake8',
'ipython',
'isort',
'jedi',
'matplotlib',
'pycodestyle',
'pydocstyle',
'pylint',
'radon',
'rope'
] # , 'test': []
},
entry_points={
'console_scripts': [
'tsim-osm-cleaner = tsim.scripts.osm_cleaner:main',
'tsim-osm-reader = tsim.scripts.osm_reader:main'
],
'gui_scripts': [
'tsim = tsim:main'
]
}
)