-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 731 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='gtfs_tripify',
packages=['gtfs_tripify'],
py_modules=['gtfs_tripify'],
version='0.0.3',
install_requires=['numpy', 'pandas', 'requests', 'gtfs-realtime-bindings', 'click'],
extras_require={
'develop': ['pytest']
},
entry_points='''
[console_scripts]
gtfs_tripify=gtfs_tripify.cli:cli
''',
description='Turn GTFS-RT transit updates into historical arrival data.',
author='Aleksey Bilogur',
author_email='aleksey.bilogur@gmail.com',
url='https://github.com/ResidentMario/gtfs-tripify',
download_url='https://github.com/ResidentMario/gtfs-tripify/tarball/0.0.3',
keywords=['TODO'],
classifiers=[]
)