Skip to content

Commit 750e41d

Browse files
committed
PyPI prep
1 parent 5afe492 commit 750e41d

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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
2928
https://discord-py-slash-command.readthedocs.io/en/latest/

discord_slash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
from .model import SlashContext
1313
from .utils import manage_commands
1414

15-
__version__ = "0.1.0"
15+
__version__ = "1.0.0"

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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="[email protected]",
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+
)

0 commit comments

Comments
 (0)