-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
46 lines (44 loc) · 1.3 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
34
35
36
37
38
39
40
41
42
43
44
45
46
"""
Python setup for the library
"""
from setuptools import setup, find_packages
VERSION = "2.7"
DESCRIPTION = "Python wrapper for the mangadex API"
with open("README.md", "r", encoding="utf8") as f:
LONG_DESCRIPTION = f.read()
# setting up
setup(
name="mangadex",
version=VERSION,
author="Eduardo Ceja",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"requests",
"future",
"python-dateutil",
"pytest",
"typing-extensions",
],
source="https://github.com/EMACC99/mangadex",
download_url="https://github.com/EMACC99/mangadex/releases",
documentation="https://github.com/EMACC99/mangadex/wiki",
license="MIT",
keywords=["python", "mangadex"],
clasifiers=[
"License :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet",
"Topic :: Library",
"Topic :: Wrapper",
],
zip_safe=False,
python_requires=">=3.6",
)