Skip to content

Commit de89680

Browse files
committed
PyPi Release
1 parent 0e3f013 commit de89680

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# dico-command
22
Command handler for dico.
3-
**Note: Development of this project will be slow.**
3+
**Note: Docs is still not ready.**
44

55
## Example
66

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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="dico-command",
8+
version="0.0.1",
9+
author="eunwoo1104",
10+
author_email="[email protected]",
11+
description="Command handler for dico.",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/dico-api/dico-command",
15+
packages=setuptools.find_packages(),
16+
python_requires='>=3.7',
17+
install_requires=["dico-api"],
18+
classifiers=[
19+
"Programming Language :: Python :: 3"
20+
]
21+
)

0 commit comments

Comments
 (0)