package structure for pip install
This commit is contained in:
@@ -42,7 +42,11 @@ bot.start()
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
*TODO*
|
To install this package on your project, use :
|
||||||
|
|
||||||
|
```
|
||||||
|
pip install git+git://github.com/Klemek/miniscord.git
|
||||||
|
```
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
@@ -50,7 +54,7 @@ bot.start()
|
|||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
*TODO*
|
* v0.0.1 (WIP) : initial version
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
import setuptools
|
||||||
|
|
||||||
|
with open("README.md", "r") as fh:
|
||||||
|
long_description = fh.read()
|
||||||
|
|
||||||
|
setuptools.setup(
|
||||||
|
name="miniscord-Klemek",
|
||||||
|
version="0.0.1",
|
||||||
|
author="Klemek",
|
||||||
|
description="A minimalist discord bot API",
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
|
url="https://github.com/Klemek/miniscord",
|
||||||
|
packages=setuptools.find_packages(),
|
||||||
|
classifiers=[
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"License :: OSI Approved :: GNU License",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
],
|
||||||
|
python_requires='>=3.6',
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user