-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.42 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
40
41
42
43
44
45
46
47
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="goldpirate",
version="1.8.0",
author="Moris Doratiotto",
author_email="[email protected]",
description="A python module to download torrents",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mortafix/GoldPirate",
packages=setuptools.find_packages(),
install_requires=[
"halo >= 0.0.31",
"requests >= 2.28.1",
"beautifulsoup4 >= 4.11.1",
"colorifix >= 2.0.4",
"qbittorrent-api >= 2022.8.38",
"tabulate >= 0.8.10",
"fake_useragent >= 1.4",
"humanfriendly >= 10.0",
"toml >= 0.10.0",
],
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
python_requires=">=3.8",
keywords=["torrent", "download"],
package_data={
"goldpirate": [
"config.toml",
"torrents/corsaronero.py",
"torrents/limetorrents.py",
"torrents/torlock.py",
"torrents/torrentdownload.py",
"torrents/x1337.py",
"torrents/rarbg.py",
]
},
entry_points={"console_scripts": ["goldpirate=goldpirate.goldpirate:main"]},
)