-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·33 lines (31 loc) · 1.11 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="seedrcc",
version="1.0.1",
author="Hemanta Pokharel",
author_email="hemantapkh@yahoo.com",
description="Complete Python API wrapper of seedr.cc",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=["requests", "validators"],
url="https://github.com/hemantapkh/seedrcc",
project_urls={
"Documentation": "https://seedrcc.readthedocs.io/en/latest/",
"Issue tracker": "https://github.com/hemantapkh/seedrcc/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',
)