-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
70 lines (67 loc) · 2.01 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import setuptools
with open("README.md", "r") as txt:
long_description = txt.read()
setuptools.setup(
name="wibuapi",
version="0.1.8",
description="Official Sync and Async Python Wrapper for Wibu API.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="Yoga Pranata",
author_email="[email protected]",
url="https://wibu-api.eu.org",
packages=setuptools.find_packages(),
keywords=[
"wibu",
"weebs",
"otaku",
"anime",
"hentai",
"donghua",
"manga",
"doujin",
"manhwa",
"manhua",
"jdrama",
"jav",
"music",
"novel",
"api",
"ip",
"terabox",
"lyrics",
"booru",
"sfw",
"nsfw",
"scraper",
"bypasser",
"genshin",
"facebook",
"youtube",
],
project_urls={
"Source": "https://github.com/zYxDevs/wibu-api-py",
"Funding": "https://github.com/sponsors/zYxDevs",
"Documentation": "https://wibu-api.eu.org/redoc",
"Bug Tracker": "https://github.com/zYxDevs/wibu-api-py/issues",
"Changelog": "https://github.com/zYxDevs/wibu-api-py/releases",
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
],
install_requires=["requests", "aiohttp"],
python_requires=">=3.8",
)