forked from johnjreiser/pygtfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 733 Bytes
/
setup.py
File metadata and controls
23 lines (23 loc) · 733 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, find_packages
from pygtfs import __version__
setup(
name='pygtfs',
version=__version__,
author='Yaron de Leeuw',
description='Models GTFS data in a database.',
license='MIT',
keywords='gtfs',
url='https://github.com/jarondl/pygtfs',
packages = find_packages(),
install_requires=['sqlalchemy>=0.7.8',
'pytz>=2012d',
'six',
'docopt'
],
entry_points = {'console_scripts': ['gtfs2db = pygtfs.gtfs2db:main']},
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
]
)