[build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] name = "conway" version = "0.0.1" authors = [ { name="Tom Weber", email="tom@weber.codes" }, ] description = "A game of life implementation" readme = "README.md" requires-python = ">=3.7" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] dependencies = [ "numpy>=1.23.3", "plotly>=5.11.0", "pandas>=1.5.1" ] [project.urls] "repository" = "https://git.weber.codes/tom/gameoflife" [tool.pytest.ini_options] addopts = [ "--import-mode=importlib", ]