Skip to content

Commit addcc88

Browse files
authored
feat!: move over to new library setup.
1 parent eeafc56 commit addcc88

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

setup.py

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,32 @@ def read_requirements(filename):
3030
version=VERSION,
3131
author="goverfl0w",
3232
author_email="james.discord.interactions@gmail.com",
33+
description="A discontinued library of Discord interactions for Python.",
34+
extras_require=extras,
35+
install_requires=["interactions"],
36+
license="GPL-3.0 License",
37+
long_description="This pip package is no longer being used for supporting updates for Discord interactions in Python.",
38+
long_description_content_type="text/markdown",
39+
url="https://github.com/interactions-py/library",
40+
packages=find_packages(),
41+
python_requires=">=3.8.6",
42+
classifiers=[
43+
"Topic :: Internet"
44+
],
45+
)
46+
47+
setup(
48+
name="interactions",
49+
version=VERSION,
50+
author="goverfl0w",
51+
author_email="james.discord.interactions@gmail.com",
3352
description="Easy, simple, scalable and modular: a Python API wrapper for interactions.",
3453
extras_require=extras,
3554
install_requires=requirements,
36-
license="MIT License",
55+
license="GPL-3.0 License",
3756
long_description=README,
3857
long_description_content_type="text/x-rst",
39-
url="https://github.com/goverfl0w/discord-interactions",
58+
url="https://github.com/interactions-py/library",
4059
packages=find_packages(),
4160
python_requires=">=3.8.6",
4261
classifiers=[

0 commit comments

Comments
 (0)