-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2174e56
commit bc63c95
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
from setuptools import setup, find_packages | ||
import os | ||
|
||
with open('README.md', 'r') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name = 'stcp_api', | ||
version = '0.1.1', | ||
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', | ||
) | ||
|