forked from UDST/urbansim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (46 loc) · 1.23 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
45
46
47
48
49
50
# Install setuptools if not installed.
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
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='1.4dev',
description='Tool for modeling metropolitan real estate markets',
long_description=long_description,
author='Synthicity',
author_email='ffoti@synthicity.com',
license='BSD',
url='https://github.com/synthicity/urbansim',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: BSD License'
],
package_data={
'': ['*.html'],
},
packages=find_packages(exclude=['*.tests']),
install_requires=[
'bottle>=0.12',
'matplotlib>=1.3.1',
'numpy>=1.8.0',
'pandas>=0.13.1',
'patsy>=0.2.1',
'prettytable>=0.7.2',
'pyyaml>=3.10',
'scipy>=0.13.3',
'simplejson>=3.3',
'statsmodels>=0.5.0',
'tables>=3.1.0',
'toolz>=0.7.0'
],
extras_require={
'pandana': ['pandana>=0.1']
}
)