-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
42 lines (39 loc) · 1.33 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
from setuptools import setup, find_packages
# read README as the long description
with open('README.rst', 'r') as f:
long_description = f.read()
description = 'A tool for creating GTFS transit and OSM pedestrian networks ' \
'for use in Pandana accessibility analyses.'
setup(
name='urbanaccess',
version='0.2.2',
license='AGPL',
description=description,
long_description=long_description,
author='UrbanSim Inc. and Samuel D. Blanchard',
url='https://github.com/UDST/urbanaccess',
classifiers=[
'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',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Affero General Public License v3'
],
packages=find_packages(exclude=['*.tests']),
install_requires=[
'requests >= 2.9.1',
'six >= 1.11',
'pandas >= 0.17.0',
'numpy >= 1.11',
'osmnet >= 0.1.4',
'pandana >= 0.2.0',
'matplotlib >= 2.0',
'geopy >= 1.11.0',
'pyyaml >= 3.11',
'scikit-learn >= 0.17.1'
]
)