forked from ActivitySim/populationsim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 998 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
36
37
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='populationsim',
version='0.3',
description='Population Synthesis',
author='contributing authors',
author_email='[email protected]',
license='BSD-3',
url='https://github.com/RSGInc/populationsim',
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.12.1',
'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',
'activitysim == 0.5',
'ortools >= 5.1.4045',
]
)