File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,7 @@ bot.run("discord_token")
22
22
```
23
23
24
24
## Installation
25
- For now clone this repository and use ` discod_slash ` folder.
26
- (Maybe will upload this at PyPi soon)
25
+ ` pip install -U discord-py-slash-command `
27
26
28
27
## DOCS
29
28
https://discord-py-slash-command.readthedocs.io/en/latest/
Original file line number Diff line number Diff line change 12
12
from .model import SlashContext
13
13
from .utils import manage_commands
14
14
15
- __version__ = "0.1 .0"
15
+ __version__ = "1.0 .0"
Original file line number Diff line number Diff line change
1
+ import setuptools
2
+
3
+ with open ("README.md" , "r" , encoding = "UTF-8" ) as f :
4
+ long_description = f .read ()
5
+
6
+ setuptools .setup (
7
+ name = "discord-py-slash-command" ,
8
+ version = "1.0.0" ,
9
+ author = "eunwoo1104" ,
10
+
11
+ description = "Simple Discord Slash Command extension for discord.py." ,
12
+ long_description = long_description ,
13
+ long_description_content_type = "text/markdown" ,
14
+ url = "https://github.com/eunwoo1104/discord-py-slash-command" ,
15
+ packages = setuptools .find_packages (),
16
+ python_requires = '>=3.6' ,
17
+ classifiers = [
18
+ "Programming Language :: Python :: 3"
19
+ ]
20
+ )
You can’t perform that action at this time.
0 commit comments