package structure for pip install

This commit is contained in:
klemek
2020-08-30 17:19:11 +02:00
parent 97229bc783
commit 8934acb004
2 changed files with 27 additions and 2 deletions
+6 -2
View File
@@ -42,7 +42,11 @@ bot.start()
## Installation
*TODO*
To install this package on your project, use :
```
pip install git+git://github.com/Klemek/miniscord.git
```
## Documentation
@@ -50,7 +54,7 @@ bot.start()
## Versions
*TODO*
* v0.0.1 (WIP) : initial version
## TODO
+21
View File
@@ -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',
)