-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
28 lines (25 loc) · 981 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 txt:
long_description = txt.read()
setuptools.setup(
name='kissmanga',
version='1.0.9',
description='An Unofficial Python API Library to Download Manga for FREE...',
long_description=long_description,
long_description_content_type="text/markdown",
license='License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
author='otakatsu',
author_email='[email protected]',
url='https://github.com/otakatsu/kissmangaapi.git',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
install_requires=["bs4", "requests", "requests_html"],
python_requires='>=3.6'
)