-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
28 lines (26 loc) · 1008 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
28
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="torrent-tracker-scraper",
version="4.1.0",
author="ziggs",
packages=["torrent_tracker_scraper"],
author_email="[email protected]",
description="A UDP torrent tracker scraper written in Python 3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/49e94b8f256530dc0d41f740dfe8a4c1/torrent-tracker-scraper",
# packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
),
install_requires=["requests"],
setup_requires=["wheel"],
python_requires=">=3.6",
)