1
0

pyproject.toml 427 B

1234567891011121314151617181920
  1. [tool.poetry]
  2. name = "nice_gui"
  3. version = "0.1.0"
  4. description = "High-Level Abstraction Web-GUI Using Just Python"
  5. authors = ["Zauberzeug GmbH"]
  6. license = "MIT"
  7. [tool.poetry.dependencies]
  8. python = "^3.9"
  9. justpy = "0.1.5"
  10. icecream = "^2.1.0"
  11. matplotlib = "^3.4.1"
  12. autopep8 = "^1.5.7"
  13. [tool.poetry.dev-dependencies]
  14. debugpy = "^1.3.0"
  15. [build-system]
  16. requires = ["poetry-core>=1.0.0"]
  17. build-backend = "poetry.core.masonry.api"