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' ], )