neuropercolation/setup.py
Richard Feistenauer b81fa28efd fixed project setup
2019-03-03 09:33:00 +01:00

20 lines
588 B
Python

from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name="cellular_automaton",
version="0.1.0",
author="Richard Feistenauer",
author_email="r.feistenauer@web.de",
packages=["cellular_automaton"],
url="https://gitlab.com/DamKoVosh/cellular_automaton",
license="Apache License 2.0",
description="N dimensional cellular automaton with multi processing capability.",
long_description=long_description,
long_description_content_type='text/markdown',
requires=["pygame"],
python_requires='>3.6.1'
)