forked from LilbabxJJ-1/CharmCord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 827 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
import setuptools
with open("README.md", "r") as rd:
longtext = rd.read()
setuptools.setup(
# Here is the module name.
name="CharmCord",
version="0.16.0",
author="Jade",
description="CharmCord is the best python string-based package for Discord bot devs",
long_description=longtext,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
# if module has dependencies i.e. if your package rely on other package at pypi.org
# then you must add there, in order to download every requirement of package
install_requires=["Py-cord", "pytz"],
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)