-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
39 lines (32 loc) · 1.13 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
import setuptools
def get_requirements():
"""Build the requirements list for this project"""
requirements_list = []
with open('requirements.txt') as requirements:
for install in requirements:
requirements_list.append(install.strip())
return requirements_list
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tdpt",
version="1.3",
author="dolohow",
author_email="lukasz@zarnowiecki.pl",
description="Torrent downloading progress on Telegram",
entry_points={
'console_scripts': ['tdpt = tdpt:__main__.main'],
},
install_requires=get_requirements(),
keywords="telegram bot transmission liveupdates torrents rtorrent torrent",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/dolohow/tdpt",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)