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

pyproject.toml 477B

1234567891011121314151617181920212223
  1. [tool.poetry]
  2. name = "messenger-1million-stats"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["demisel <elias@demisel.space>"]
  6. readme = "README.md"
  7. packages = [{include = "million"}]
  8. [tool.poetry.dependencies]
  9. python = "^3.10"
  10. matplotlib = "^3.8.3"
  11. pydantic = "^2.6.1"
  12. pandas = "^2.2.0"
  13. python-igraph = "^0.11.6"
  14. pycairo = "^1.26.1"
  15. [tool.poetry.group.test.dependencies]
  16. pytest = "^8.0.2"
  17. [build-system]
  18. requires = ["poetry-core"]
  19. build-backend = "poetry.core.masonry.api"