pyproject.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [tool.poetry]
  2. name = "nicegui"
  3. version = "0.1.0"
  4. description = "Create web-based user interfaces with Python. The nice way."
  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.7"
  14. Pygments = "^2.9.0"
  15. uvicorn = {extras = ["standard"], version = "^0.20.0"}
  16. matplotlib = [
  17. { version = "^3.5.0", markers = "python_version ~= '3.7'"},
  18. { version = "^3.6.0", markers = "python_version ~= '3.11.0'"},
  19. ]
  20. fastapi = ">=0.92,<1.0.0"
  21. fastapi-socketio = "^0.0.10"
  22. vbuild = "^0.8.1"
  23. watchfiles = "^0.18.1"
  24. jinja2 = "^3.1.2"
  25. python-multipart = "^0.0.6"
  26. plotly = "^5.13.0"
  27. orjson = {version = "^3.8.6", markers = "platform_machine != 'i386' and platform_machine != 'i686'"} # orjson does not support 32bit
  28. pywebview = "^4.0.2"
  29. importlib_metadata = { version = "^6.0.0", markers = "python_version ~= '3.7'" } # Python 3.7 has no importlib.metadata
  30. [tool.poetry.group.dev.dependencies]
  31. icecream = "^2.1.0"
  32. autopep8 = "^1.5.7"
  33. debugpy = "^1.3.0"
  34. pytest-selenium = "^4.0.0"
  35. pytest-asyncio = "^0.19.0"
  36. pytest = "6.2.5"
  37. itsdangerous = "^2.1.2" # required by SessionMiddleware (see https://fastapi.tiangolo.com/?h=itsdangerous#optional-dependencies)
  38. isort = "^5.11.4"
  39. docutils = "^0.19"
  40. pandas = [
  41. { version = "^1.0.0", markers = "python_version == '3.7'" },
  42. { version = "^2.0.0", markers = "python_version >= '3.8'" },
  43. ]
  44. secure = "^0.3.0"
  45. [build-system]
  46. requires = [
  47. "setuptools>=30.3.0,<50",
  48. "poetry-core>=1.0.0"
  49. ]
  50. build-backend = "poetry.core.masonry.api"