pyproject.toml 583 B

123456789101112131415161718192021222324
  1. [tool.poetry]
  2. name = "nicegui"
  3. version = "0.1.0"
  4. description = "High-Level Abstraction Web-GUI Using Just Python"
  5. authors = ["Zauberzeug GmbH"]
  6. license = "MIT"
  7. readme = "README.md"
  8. repository = "https://github.com/zauberzeug/nicegui"
  9. keywords = ["gui", "ui", "web", "interface", "live"]
  10. [tool.poetry.dependencies]
  11. python = "^3.7"
  12. justpy = "0.1.5"
  13. matplotlib = "^3.4.1"
  14. typing-extensions = "^3.10.0"
  15. [tool.poetry.dev-dependencies]
  16. icecream = "^2.1.0"
  17. autopep8 = "^1.5.7"
  18. debugpy = "^1.3.0"
  19. [build-system]
  20. requires = ["poetry-core>=1.0.0"]
  21. build-backend = "poetry.core.masonry.api"