updated roles, init tests, added states
This commit is contained in:
23
setup.py
Normal file
23
setup.py
Normal 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',
|
||||
)
|
||||
Reference in New Issue
Block a user