File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 11# dico-command
22Command handler for dico.
3- ** Note: Development of this project will be slow .**
3+ ** Note: Docs is still not ready .**
44
55## Example
66
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 = "dico-command" ,
8+ version = "0.0.1" ,
9+ author = "eunwoo1104" ,
10+ 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+ )
You can’t perform that action at this time.
0 commit comments