parent
f4d6be681f
commit
0f0f300ab4
@ -0,0 +1,22 @@ |
||||
import setuptools |
||||
|
||||
with open("README.md", "r") as fh: |
||||
long_description = fh.read() |
||||
|
||||
setuptools.setup( |
||||
name="minecraft-discord-bridge", |
||||
version="0.0.1", |
||||
author="Tristan Gosselin-Hane", |
||||
author_email="starcraft66@gmail.com", |
||||
description="A bridge between minecraft and discord chat", |
||||
long_description=long_description, |
||||
long_description_content_type="text/markdown", |
||||
url="https://github.com/starcraft66/minecraft-discord-bridge", |
||||
packages=setuptools.find_packages(), |
||||
classifiers=[ |
||||
"Programming Language :: Python :: 3", |
||||
"License :: OSI Approved :: Apache Software License", |
||||
"Operating System :: OS Independent", |
||||
], |
||||
python_requires='>=3.5', |
||||
) |
Loading…
Reference in new issue