You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
714 B
22 lines
714 B
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',
|
|
)
|
|
|