forked from crowddynamics/crowddynamics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 1.57 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
from setuptools import setup, find_packages
import versioneer
def readfile(filepath):
with open(filepath) as f:
return f.read()
setup(
name='crowddynamics',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Python package for simulating, visualizing and analysing '
'movement of human crowds.',
long_description=readfile('README.rst'),
author='Jaan Tollander de Balsch',
author_email='[email protected]',
url='https://github.com/jaantollander/crowddynamics',
license=readfile('LICENSE.txt'),
packages=find_packages(),
entry_points={
'console_scripts': [
'crowddynamics=crowddynamics.cli:main'
]
},
include_package_data=True,
install_requires=[],
extra_require={
'docs': ['sphinx',
'sphinx-rtd-theme',
'graphviz',
'sphinxcontrib-tikz'],
'tests': ['pytest',
'pytest-cov',
'pytest-benchmark',
'hypothesis'],
},
zip_safe=False,
keywords='',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)