updated roles, init tests, added states

This commit is contained in:
2021-03-12 00:59:38 +01:00
parent 8654e795fe
commit c6e8cc7d29
6 changed files with 193 additions and 39 deletions

23
setup.py Normal file
View File

@@ -0,0 +1,23 @@
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',
)