-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 832 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='stcp_api',
version='1.1.2',
author='Guilherme Borges',
author_email='g@guilhermeborges.net',
description='Unofficial API to retrieve STCP information for public transit buses in Porto, Portugal',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/sgtpepperpt/stcp-api',
packages=find_packages(),
install_requires=[
'requests',
'beautifulsoup4',
'urllib3'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.11',
)