-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.14 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.14 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
from setuptools import setup, find_packages
VERSION = '0.3.0.0'
DESCRIPTION = 'Python API wrapper for the galician public transport'
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name="busGal_api",
version=VERSION,
author="Pedro Rey Anca",
author_email="contact@peprolinbot.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=["requests>=2.25.1",
"python-dateutil>=2.9.0.post0", "pycryptodome>=3.20.0","lxml==5.3.0"],
url="https://github.com/peprolinbot/bus.gal-api",
project_urls={
"Bug Tracker": "https://github.com/peprolinbot/bus.gal-api/issues",
"Documentation": "https://peprolinbot.github.io/bus.gal-api",
},
keywords=['bus', 'buses', 'transport',
'public transport', 'galicia', 'api'],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)