forked from ActivitySim/activitysim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 976 Bytes
/
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
from ez_setup import use_setuptools
use_setuptools() # nopep8
from setuptools import setup, find_packages
setup(
name='activitysim',
version='0.9.2',
description='Activity-Based Travel Modeling',
author='contributing authors',
author_email='[email protected]',
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,
install_requires=[
'numpy >= 1.16.1',
'openmatrix >= 0.3.4.1',
'pandas >= 0.24.1',
'pyyaml >= 5.1',
'tables >= 3.5.1',
'toolz >= 0.8.1',
'zbox >= 1.2',
'psutil >= 4.1',
'future >= 0.16.0'
]
)