forked from athuler/PassioGo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 846 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()
with open("requirements.txt", "r") as fh:
requires = [line for line in fh.read().splitlines() if line != ""]
setup(
name='PassioGo',
version="0.2.2",
description="An unofficial API for Passio Go",
long_description=long_description,
long_description_content_type='text/markdown',
author='Andrei Thuler',
author_email='[email protected]',
url="https://github.com/athuler/PassioGo",
packages=find_packages(),
py_modules=find_packages(),
install_requires=requires,
project_urls = {
'Documentation': 'https://passiogo.readthedocs.io/',
'GitHub': 'https://github.com/athuler/PassioGo',
'Sponsor':'https://github.com/sponsors/athuler',
'Changelog':'https://github.com/athuler/PassioGo/blob/main/CHANGELOG.md',
},
)