-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 955 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
29
30
31
import setuptools
from readme_renderer import rst
README = open("README.md").read()
setuptools.setup(
name="tracker-scraper",
version="1.1.1",
url="https://github.com/modbender/tracker-scraper",
description="A simple torrent tracker scraper",
long_description=README,
long_description_content_type="text/markdown",
author="Yashas H R",
author_email="[email protected]",
install_requires=[
"bencode.py",
"requests",
],
python_requires=">=3.5",
platforms=["any"],
packages=setuptools.find_packages(),
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)