generated from Dorukyum/pypi-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (22 loc) · 740 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
from setuptools import setup
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="pycord-multicog",
packages=["pycord.multicog"],
version="2.1.1",
license="MIT",
description="A pycord extension that allows splitting command groups into multiple cogs",
long_description=readme,
long_description_content_type="text/markdown",
author="Dorukyum",
url="https://github.com/Dorukyum/pycord-multicog",
keywords="Pycord",
install_requires=["py-cord>=2.5.0"],
classifiers=classifiers,
project_urls={"Source": "https://github.com/Dorukyum/pycord-multicog"},
)