-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
39 lines (36 loc) · 1.09 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
#!/usr/bin/python
from setuptools import setup, find_packages
import sys, os
version = '1.1'
setup(name='EinsPy',
version=version,
description="Simulations of Traffic System Based on the Theory of Cellular Automaton",
long_description="""\
Simulations of Traffic System Based on the Theory of Cellular Automaton
""",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Natural Language :: Chinese (Simplified)",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Mathematics"
],
author='xiongbeer',
author_email='[email protected]',
url='https://github.com/xiongbeer/Eins',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'pandas',
'matplotlib',
'numpy',
'colorama',
'tqdm'
],
entry_points="""
# -*- Entry points: -*-
""",
)