forked from ActivitySim/activitysim
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (37 loc) · 1.16 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
from ez_setup import use_setuptools
use_setuptools() # nopep8
from setuptools import setup, find_packages
import os
import re
with open(os.path.join('activitysim', '__init__.py')) as f:
info = re.search(r'__.*', f.read(), re.S)
exec(info[0])
setup(
name='activitysim',
version=__version__,
description=__doc__,
author='contributing authors',
author_email='ben.stabler@rsginc.com',
license='BSD-3',
url='https://github.com/activitysim/activitysim',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: BSD License'
],
packages=find_packages(exclude=['*.tests']),
include_package_data=True,
entry_points={'console_scripts': ['activitysim=activitysim.cli.main:main']},
install_requires=[
'numpy >= 1.16.1',
'openmatrix >= 0.3.4.1',
'pandas >= 1.0.1',
'pyyaml >= 5.1',
'tables >= 3.5.1',
'toolz >= 0.8.1',
'zbox >= 1.2',
'psutil >= 4.1',
'requests >= 2.7'
]
)