pyproject.toml 685 B

1234567891011121314151617181920212223242526272829
  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. markdown2 = "^2.4.0"
  16. Pygments = "^2.9.0"
  17. docutils = "^0.17.1"
  18. binding = "^0.1.3"
  19. asttokens = "^2.0.5"
  20. [tool.poetry.dev-dependencies]
  21. icecream = "^2.1.0"
  22. autopep8 = "^1.5.7"
  23. debugpy = "^1.3.0"
  24. [build-system]
  25. requires = ["poetry-core>=1.0.0"]
  26. build-backend = "poetry.core.masonry.api"