1
0

pyproject.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. typing-extensions = ">=3.10.0"
  14. markdown2 = "^2.4.3"
  15. Pygments = "^2.9.0"
  16. docutils = "^0.17.1"
  17. asttokens = "^2.0.5"
  18. uvicorn = "^0.18.0"
  19. websockets = "^10.3"
  20. httpx = "^0.23.0"
  21. watchfiles = "^0.16.1"
  22. matplotlib = [
  23. { version = "^3.5.0", markers = "python_version ~= '3.7'"},
  24. { version = "^3.6.0", markers = "python_version ~= '3.11.0'"},
  25. ]
  26. cryptography = "^38.0.3"
  27. [tool.poetry.dev-dependencies]
  28. icecream = "^2.1.0"
  29. autopep8 = "^1.5.7"
  30. debugpy = "^1.3.0"
  31. beautifulsoup4 = "^4.11.1"
  32. pytest-selenium = "^4.0.0"
  33. pytest-asyncio = "^0.19.0"
  34. pytest = "6.2.5"
  35. replicate = "^0.4.0"
  36. [build-system]
  37. requires = [
  38. "setuptools>=30.3.0,<50",
  39. "poetry-core>=1.0.0"
  40. ]
  41. build-backend = "poetry.core.masonry.api"