This repository was archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (29 loc) · 1.32 KB
/
setup.py
File metadata and controls
executable file
·31 lines (29 loc) · 1.32 KB
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
from distutils.core import setup
setup(
name = 'discordslashcommands',
packages = ['discordslashcommands'],
version = '1.0.4',
license='MIT',
long_description = 'A simple libary to configurate slash commands on discord\n\nSee documentation at https://github.com/mactul/discordslashcommands\n\nThanks to Seniru for reporting and correcting some bugs and imperfections',
author = 'Macéo Tuloup',
author_email = 'mactulgames@gmail.com',
url = 'https://github.com/mactul/discordslashcommands',
download_url = 'https://github.com/mactul/discordslashcommands.git',
keywords = ['discord', 'slash', 'custom', 'command', 'commands'],
install_requires=[
'discord.py',
'requests',
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)