Conway's Game of Life
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pyproject.toml 302B

123456789101112131415
  1. [tool.poetry]
  2. name = "conway"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Dylan Baker <dylan@simulacrum.party>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.0"
  8. [tool.poetry.dev-dependencies]
  9. pytest = "^6.1.2"
  10. [build-system]
  11. requires = ["poetry-core>=1.0.0"]
  12. build-backend = "poetry.core.masonry.api"