pyproject.toml 299 B

12345678910111213141516
  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. pandas = "^2.2.3"
  11. [build-system]
  12. requires = ["poetry-core"]
  13. build-backend = "poetry.core.masonry.api"