This repository was archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.36 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.36 KB
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
"""
@author: Laurent GREGOIRE <laurent.gregoire@mecatran.com>
"""
from setuptools import setup, find_packages
import gtfslib
setup(
name='gtfslib',
version=gtfslib.__version__,
description="GTFS database library",
long_description="An open source library for reading, databasing, querying and manipulating GTFS-based transit data",
url='https://github.com/afimb/gtfslib-python',
author='AFIMB / CEREMA / MECATRAN',
author_email='laurent.gregoire@mecatran.com',
license='GPLv3',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
keywords='GTFS transit',
packages=find_packages(),
install_requires=['sqlalchemy', 'six', 'docopt', 'requests', 'pyqtree', 'pyshp'],
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
},
entry_points={
'console_scripts': [
'gtfsdbloader=gtfslib.gtfsdbloader:main',
'gtfsrun=gtfsplugins.gtfsrun:main'
],
},
)