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.
gameoflife/pyproject.toml

31 lines
662 B

[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",
]