aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-08-24 09:55:18 +0200
committerCharles <sircharlesaze@gmail.com>2019-08-24 09:55:18 +0200
commit92eb91cae76192ba0127f8bde3c78d1b3371a63e (patch)
treeff3027cb653cfb31c39eeb6bbb1a1e2f63b9d1cd /setup.py
downloadgame_of_life-92eb91cae76192ba0127f8bde3c78d1b3371a63e.tar.gz
game_of_life-92eb91cae76192ba0127f8bde3c78d1b3371a63e.tar.bz2
game_of_life-92eb91cae76192ba0127f8bde3c78d1b3371a63e.zip
Game of life in Python initial commit
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..62f59d8
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,8 @@
+from cx_Freeze import setup, Executable
+
+setup(
+ name='Game of life',
+ version='0.1',
+ description='Implement the game of life with a list of pattern available',
+ executables=[Executable('main.py')]
+)