aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 62f59d8b3e8ea3c2668d0e0f9222bedb57a66b3c (plain)
1
2
3
4
5
6
7
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')]
)