15 lines
452 B
Python
15 lines
452 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
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="LICENSE.txt",
|
||
|
description="N dimensional cellular automaton implementation with multi processing capability.",
|
||
|
long_description="README.md",
|
||
|
requires=["pygame"]
|
||
|
)
|