forked from UDST/urbansim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.4 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
42
43
44
from setuptools import setup, find_packages
# read README as the long description
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='urbansim',
version='3.2',
description='Platform for building statistical models of cities and regions',
long_description=long_description,
author='UrbanSim Inc.',
author_email='[email protected]',
license='BSD',
url='https://github.com/udst/urbansim',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: BSD License'
],
package_data={
'': ['*.html'],
},
packages=find_packages(exclude=['*.tests']),
install_requires=[
'numpy >= 1.8.0',
'orca >= 1.1',
'pandas >= 0.17.0',
'patsy >= 0.4.1',
'prettytable >= 0.7.2',
'pyyaml >= 3.10',
'scipy >= 1.0',
'statsmodels >= 0.8, <0.11; python_version <"3.6"',
'statsmodels >= 0.8; python_version >="3.6"',
'toolz >= 0.8.1'
]
)