-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.14 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
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = f.readlines()
long_description = "combine_gtfs_feeds is a command line tool \
to combine multiple gtfs feeds into a single feed/dataset. \
The main purpose of combine_gtfs_tools is to be able work \
from one GTFS feed when performing transit service analysis \
for a particular geographic location."
setup(
name="combine_gtfs_feeds",
version="0.1.8",
author="psrc staff",
author_email="scoe@psrc.org",
url="https://github.com/psrc/combine_gtfs_feeds",
description="Package to combine GTFS feeds.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(),
python_requires='>3.6.1',
entry_points={
"console_scripts": ["combine_gtfs_feeds = combine_gtfs_feeds.cli.main:main"]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="GTFS",
install_requires=requirements,
zip_safe=False,
)