You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
499 B
20 lines
499 B
from setuptools import setup
|
|
|
|
setup(
|
|
name='conway',
|
|
version='0.1.0',
|
|
description="A conway's game of life implementation",
|
|
url='https://git.weber.codes/tom/conwaysgameoflife',
|
|
author='Tom Weber',
|
|
author_email='mail@weber.codes',
|
|
license='BSD 2-clause',
|
|
packages=['conway'],
|
|
install_requires=['wheel',
|
|
'numpy',
|
|
'pandas',
|
|
'matplotlib',
|
|
'plotly'
|
|
],
|
|
|
|
)
|