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")
2222```
2323
2424## 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 `
2726
2827## DOCS
2928https://discord-py-slash-command.readthedocs.io/en/latest/
Original file line number Diff line number Diff line change 1212from .model import SlashContext
1313from .utils import manage_commands
1414
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+ author_email = "sions04@naver.com" ,
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