-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
25 lines (23 loc) · 823 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, find_packages
with open("README.rst", "r", encoding="utf-8") as f:
readme = f.read()
setup(
name="disputils",
version="0.2.0",
description="Some utilities for discord.py. Making Discord bot development easier.",
long_description=readme,
long_description_content_type="text/x-rst",
url="https://github.com/LiBa001/disputils",
author="Linus Bartsch",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.6",
install_requires=["discord.py >=1,<2"],
keywords="discord discord-py discord-bot utils utility",
packages=find_packages(exclude=["examples", "docs", "tests"]),
data_files=None,
)