pyproject.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. typing-extensions = ">=3.10.0"
  13. markdown2 = "^2.4.3"
  14. Pygments = "^2.9.0"
  15. docutils = "^0.17.1"
  16. uvicorn = {extras = ["standard"], version = "^0.20.0"}
  17. matplotlib = [
  18. { version = "^3.5.0", markers = "python_version ~= '3.7'"},
  19. { version = "^3.6.0", markers = "python_version ~= '3.11.0'"},
  20. ]
  21. fastapi = "^0.88.0"
  22. fastapi-socketio = "^0.0.9"
  23. vbuild = "^0.8.1"
  24. watchfiles = "^0.18.1"
  25. jinja2 = "^3.1.2"
  26. [tool.poetry.group.dev.dependencies]
  27. icecream = "^2.1.0"
  28. autopep8 = "^1.5.7"
  29. debugpy = "^1.3.0"
  30. pytest-selenium = "^4.0.0"
  31. pytest-asyncio = "^0.19.0"
  32. pytest = "6.2.5"
  33. replicate = "^0.4.0"
  34. itsdangerous = "^2.1.2" # required by SessionMiddleware (see https://fastapi.tiangolo.com/?h=itsdangerous#optional-dependencies)
  35. [build-system]
  36. requires = [
  37. "setuptools>=30.3.0,<50",
  38. "poetry-core>=1.0.0"
  39. ]
  40. build-backend = "poetry.core.masonry.api"