pyproject.toml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.8"
  12. typing-extensions = ">=3.10.0"
  13. markdown2 = "^2.4.7"
  14. Pygments = ">=2.15.1,<3.0.0"
  15. uvicorn = {extras = ["standard"], version = "^0.22.0"}
  16. fastapi = ">=0.92,<1.0.0"
  17. fastapi-socketio = "^0.0.10"
  18. vbuild = ">=0.8.2"
  19. watchfiles = ">=0.18.1,<1.0.0"
  20. jinja2 = "^3.1.2"
  21. python-multipart = "^0.0.6"
  22. orjson = {version = "^3.8.6", markers = "platform_machine != 'i386' and platform_machine != 'i686'"} # orjson does not support 32bit
  23. itsdangerous = "^2.1.2"
  24. aiofiles = "^23.1.0"
  25. pywebview = { version = "^4.0.2", optional = true }
  26. plotly = { version = "^5.13.0", optional = true }
  27. matplotlib = { version = "^3.5.0", optional = true }
  28. netifaces = { version = "^0.11.0", optional = true }
  29. httpx = "^0.24.1"
  30. aiohttp = "^3.8.5"
  31. [tool.poetry.extras]
  32. native = ["pywebview"]
  33. plotly = ["plotly"]
  34. matplotlib = ["matplotlib"]
  35. netifaces = ["netifaces"]
  36. [tool.poetry.group.dev.dependencies]
  37. icecream = "^2.1.0"
  38. autopep8 = "^1.5.7"
  39. debugpy = "^1.3.0"
  40. pytest-selenium = "^4.0.0"
  41. pytest-asyncio = "^0.19.0"
  42. pytest = "6.2.5"
  43. itsdangerous = "^2.1.2" # required by SessionMiddleware (see https://fastapi.tiangolo.com/?h=itsdangerous#optional-dependencies)
  44. isort = "^5.11.4"
  45. docutils = "^0.19"
  46. pandas = "^2.0.0"
  47. secure = "^0.3.0"
  48. webdriver-manager = "^3.8.6"
  49. numpy = ">=1.24.0"
  50. selenium = "^4.11.2"
  51. beautifulsoup4 = "^4.12.2"
  52. urllib3 = ">=1.26.17,^1.26 || >=2.0.6" # https://github.com/zauberzeug/nicegui/security/dependabot/22
  53. [build-system]
  54. requires = [
  55. "setuptools>=30.3.0,<50",
  56. "poetry-core>=1.0.0"
  57. ]
  58. build-backend = "poetry.core.masonry.api"
  59. [tool.pytest.ini_options]
  60. addopts = "--driver Chrome"
  61. asyncio_mode = "auto"
  62. [tool.mypy]
  63. ignore_missing_imports = true