This repository was archived by the owner on Jan 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (51 loc) · 1.41 KB
/
setup.py
File metadata and controls
53 lines (51 loc) · 1.41 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
48
49
50
51
52
53
from setuptools import setup, find_packages
f = open("README.md", "r", encoding="utf-8")
README = f.read()
setup(
name="Estrapy-API",
version="0.2.8",
packages=find_packages(),
install_requires=[
"requests",
"pygments",
"packaging",
"asyncclick",
"tabulate",
"anyio",
],
license="MIT",
url="https://github.com/StawaDev/Estrapy-API",
project_urls={
"Documentation": "https://stawa.gitbook.io/estraapi-documentation/",
"Source": "https://github.com/StawaDev/Estrapy-API",
"Tracker": "https://github.com/StawaDev/Estrapy-API/issues",
},
author="StawaDev",
description="An Easy-to-Use Wrapper Anime Images API with Many Others Features",
long_description=README,
long_description_content_type="text/markdown",
entry_points="""
[console_scripts]
estrapy=Estrapy.cli:main
estrapy menu=Estrapy.cli:menu
estrapy help=Estrapy.cli:help
estrapy save=Estrapy.cli:save
""",
keywords=[
"python api",
"anime",
"anime gif",
"roleplay gif",
"wrapper anime gif",
"osu",
"osu api",
"trivia",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Environment :: Console",
],
)