forked from ActivitySim/activitysim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 979 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
34
35
from ez_setup import use_setuptools
use_setuptools() # nopep8
from setuptools import setup, find_packages
with open('README.rst') as file:
long_description = file.read()
setup(
name='activitysim',
version='0.2.dev1',
description='Activity-Based Travel Modeling',
author='contributing authors',
author_email='[email protected]',
license='BSD-3',
url='https://github.com/udst/activitysim',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License'
],
long_description=long_description,
packages=find_packages(exclude=['*.tests']),
install_requires=[
'numpy >= 1.8.0',
'openmatrix >= 0.2.4',
'orca >= 1.1',
'pandas >= 0.18.0',
'pyyaml >= 3.0',
'tables >= 3.3.0',
'toolz >= 0.7',
'zbox >= 1.2',
'psutil >= 4.1'
]
)