pyproject.toml 281 B

123456789101112131415
  1. [tool.poetry]
  2. name = "demo"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["boyrobot <ggsky2022@gmail.com>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "^3.12"
  9. streamlit = "1.28.0"
  10. [build-system]
  11. requires = ["poetry-core"]
  12. build-backend = "poetry.core.masonry.api"