-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 1.15 KB
/
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
from setuptools import setup, find_packages
with open("README.rst", "r", encoding="utf-8") as f:
readme = f.read()
setup(
name="discord-interactions.py",
version="0.0.8",
description="A library around the Discord Interactions API",
long_description=readme,
long_description_content_type="text/x-rst",
url="https://github.com/LiBa001/discord-interactions.py",
author="Linus Bartsch",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
],
python_requires=">=3.8",
install_requires=["flask", "pynacl", "requests"],
keywords="discord discord-py discord-bot wrapper",
packages=find_packages(exclude=["examples", "tests"]),
data_files=None,
)