-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.36 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (45 loc) · 1.36 KB
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
47
"""
Python setup for the library
"""
from setuptools import find_packages, setup
VERSION = "2.7.1"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet",
"Topic :: Library",
"Topic :: Wrapper",
],
zip_safe=False,
python_requires=">=3.6",
)