-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 879 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
29
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
def get_long_description():
with open("README.md", encoding="utf-8") as file:
return file.read()
REQUIREMENTS = [
"aiosqlite",
"aiohttp",
"disnake",
]
DOCS = "https://jgltechnologies.com/dpys"
VERSION = "5.5.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
setup(
name="dpys",
version=VERSION,
description="A library to simplify discord.py",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url=DOCS,
author="George Luca",
author_email="[email protected]",
license="MIT",
classifiers=classifiers,
keywords="discord",
packages=find_packages(),
install_requires=REQUIREMENTS,
)