-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 794 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='rtpplayapi',
version='1.0.4',
description='An unofficial python api to fetch media from RTPPlay, based on their mobile API.',
long_description_content_type="text/markdown",
long_description=README,
license='MIT',
packages=find_packages(),
author='Guilherme Penedo',
author_email='[email protected]',
keywords=['rtp', 'rtpplay', 'rtp-play', 'api', 'mobile', 'rtp-play-api'],
url='https://github.com/guipenedo/rtp-play-api',
download_url='https://pypi.org/project/rtpplayapi/'
)
install_requires = [
'requests'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)