-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (28 loc) · 889 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
from setuptools import setup, find_packages
extras={
"dpy":["discord.py>=1.0.0"],
"pillow":["pillow"]
}
setup(
name="popcat",
version="0.0.1",
author="EpiclyRaspberry",
author_email="[email protected]",
description="An asynchronous api wrapper for popcat.xyz",
long_description="An asynchronous api wrapper for popcat.xyz",
packages=find_packages(),
install_requires=["aiohttp","aiofiles"],
extras_require=extras,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Natural Language :: English"
]
)