forked from hemantapkh/1337x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.12 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
import setuptools
with open("README.md", "r") as fh:
readme = fh.read()
setuptools.setup(
name="1337x",
version="1.2.3",
author="Hemanta Pokharel",
author_email="[email protected]",
description="Unofficial API of 1337x.to",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=["requests", "bs4", "requests-cache"],
url="https://github.com/hemantapkh/1337x",
project_urls={
"Documentation": "https://github.com/hemantapkh/1337x/blob/main/README.md",
"Issue tracker": "https://github.com/hemantapkh/1337x/issues",
},
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
python_requires='>=3.0',
)