import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="pywerwolf", version="0.0.1", author="Matthias Bilger", author_email="matthias@bilger.info", description="A Python implementation of Werewolf/Mafia game", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/m42e/pywerwolf", license="GPL", packages=setuptools.find_packages(), # Required classifiers=[ "Programming Language :: Python :: 3", "Operating System :: OS Independent", 'License :: Other/Proprietary License', ], python_requires='>=3.6', )