generated from aaivu/aaivu-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (42 loc) · 1.74 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
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
with open("PACKAGE_DESCRIPTION.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only", # Specify Python 3 only
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
setup(
name="gps2gtfs",
packages=find_packages(),
version="main",
description="A Python package to process raw GPS data of public transit and transform to GTFS format.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aaivu/gps2gtfs",
keywords=['GTFS', 'GPS', 'Travel Time', 'Public Transit', 'Heterogeneous Traffic Condition', 'ITS'],
author="Aaivu",
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
python_requires=">=3.6",
install_requires=['pandas==2.1.4', 'geopandas', 'numpy'],
project_urls={
"Homepage": "https://github.com/aaivu/gps2gtfs",
"Source": "https://github.com/aaivu/gps2gtfs",
"Download": "https://pypi.org/project/gps2gtfs/",
"Documentation": "https://github.com/aaivu/gps2gtfs/blob/master/PACKAGE_DESCRIPTION.md",
"Bug Tracker": "https://github.com/aaivu/gps2gtfs/issues",
}
)