Skip to content

Commit

Permalink
PyPI prep
Browse files Browse the repository at this point in the history
  • Loading branch information
eunwoo1104 committed Dec 12, 2020
1 parent 5afe492 commit 750e41d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ bot.run("discord_token")
```

## Installation
For now clone this repository and use `discod_slash` folder.
(Maybe will upload this at PyPi soon)
`pip install -U discord-py-slash-command`

## DOCS
https://discord-py-slash-command.readthedocs.io/en/latest/
Expand Down
2 changes: 1 addition & 1 deletion discord_slash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
from .model import SlashContext
from .utils import manage_commands

__version__ = "0.1.0"
__version__ = "1.0.0"
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import setuptools

with open("README.md", "r", encoding="UTF-8") as f:
long_description = f.read()

setuptools.setup(
name="discord-py-slash-command",
version="1.0.0",
author="eunwoo1104",
author_email="[email protected]",
description="Simple Discord Slash Command extension for discord.py.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/eunwoo1104/discord-py-slash-command",
packages=setuptools.find_packages(),
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3"
]
)

0 comments on commit 750e41d

Please sign in to comment.