pyproject.toml 832 B

1234567891011121314151617181920212223242526272829303132333435
  1. [tool.poetry]
  2. name = "nicegui"
  3. version = "0.1.0"
  4. description = "Web User Interface with Buttons, Dialogs, Markdown, 3D Scences and Plots"
  5. authors = ["Zauberzeug GmbH <info@zauberzeug.com>"]
  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.2.3"
  13. matplotlib = "^3.4.1"
  14. typing-extensions = ">=3.10.0"
  15. markdown2 = "^2.4.3"
  16. Pygments = "^2.9.0"
  17. docutils = "^0.17.1"
  18. asttokens = "^2.0.5"
  19. uvicorn = "^0.18.0"
  20. websockets = "^10.3"
  21. httpx = "^0.23.0"
  22. watchfiles = "^0.16.1"
  23. [tool.poetry.dev-dependencies]
  24. icecream = "^2.1.0"
  25. autopep8 = "^1.5.7"
  26. debugpy = "^1.3.0"
  27. [build-system]
  28. requires = [
  29. "setuptools>=30.3.0,<50",
  30. "poetry-core>=1.0.0"
  31. ]
  32. build-backend = "poetry.core.masonry.api"