-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 737 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 737 Bytes
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
from setuptools import setup, find_packages
requires = [
'iso639>=0.1.1',
'language-tags>=0.3.2',
'pycountry>=1.12',
'pytz>=2015.4'
]
dependency = [
]
setup(
name='GTFS',
version='0.0.1a',
description='gtfs python implementation.',
long_description=(
'Python implementation of '
'General Transit Feed Specification'
)
license='MIT',
author='Ilya A. Barsukov',
author_email='ilya.a.barsukov@gmail.com',
url='http://smart-transport.ru/',
packages=find_packages(exclude=['tests']),
entry_points={
'console_scripts': [
# not implemented
],
},
zip_safe=False,
install_requires=requires,
dependency_links=dependency
)