pyproject.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. [tool.poetry]
  2. name = "reflex"
  3. version = "0.4.2"
  4. description = "Web apps in pure Python."
  5. license = "Apache-2.0"
  6. authors = [
  7. "Nikhil Rao <nikhil@reflex.dev>",
  8. "Alek Petuskey <alek@reflex.dev>",
  9. "Masen Furer <masen@reflex.dev>",
  10. "Elijah Ahianyo <elijah@reflex.dev>",
  11. "Thomas Brandého <thomas@reflex.dev>",
  12. ]
  13. readme = "README.md"
  14. homepage = "https://reflex.dev"
  15. repository = "https://github.com/reflex-dev/reflex"
  16. documentation = "https://reflex.dev/docs/getting-started/introduction"
  17. keywords = [
  18. "web",
  19. "framework",
  20. ]
  21. classifiers = [
  22. "Development Status :: 4 - Beta",
  23. ]
  24. packages = [
  25. {include = "reflex"}
  26. ]
  27. [tool.poetry.dependencies]
  28. python = "^3.8"
  29. cloudpickle = "^2.2.1"
  30. fastapi = "^0.96.0"
  31. gunicorn = "^20.1.0"
  32. httpx = ">=0.24.0, <0.26.0"
  33. jinja2 = "^3.1.2"
  34. psutil = "^5.9.4"
  35. pydantic = "^1.10.2"
  36. python-multipart = "^0.0.5"
  37. python-socketio = "^5.7.0"
  38. redis = "^4.3.5"
  39. rich = "^13.0.0"
  40. sqlmodel = "^0.0.14"
  41. typer = ">=0.4.2,<1"
  42. uvicorn = [
  43. {version = "^0.24.0", python = ">=3.12"},
  44. {version = "^0.20.0", python = "<3.12"},
  45. ]
  46. watchdog = "^2.3.1"
  47. watchfiles = "^0.19.0"
  48. starlette-admin = "^0.9.0"
  49. alembic = "^1.11.1"
  50. platformdirs = "^3.10.0"
  51. distro = {version = "^1.8.0", platform = "linux"}
  52. python-engineio = "!=4.6.0"
  53. wrapt = [
  54. {version = "^1.14.0", python = ">=3.11"},
  55. {version = "^1.11.0", python = "<3.11"},
  56. ]
  57. packaging = "^23.1"
  58. pipdeptree = "^2.13.0"
  59. reflex-hosting-cli = ">=0.1.2"
  60. charset-normalizer = "^3.3.2"
  61. wheel = "^0.42.0"
  62. build = "^1.0.3"
  63. setuptools = "^69.1.1"
  64. [tool.poetry.group.dev.dependencies]
  65. pytest = "^7.1.2"
  66. pytest-mock = "^3.10.0"
  67. pyright = ">=1.1.229,<1.1.335"
  68. darglint = "^1.8.1"
  69. toml = "^0.10.2"
  70. pytest-asyncio = "^0.20.1"
  71. pytest-cov = "^4.0.0"
  72. black = "^22.10.0"
  73. ruff = "^0.0.244"
  74. pandas = [
  75. {version = "^2.1.1", python = ">=3.9,<3.13"},
  76. {version = "^1.5.3", python = ">=3.8,<3.9"},
  77. ]
  78. pillow = [
  79. {version = "^10.0.0", python = ">=3.8,<4.0"}
  80. ]
  81. plotly = "^5.13.0"
  82. asynctest = "^0.13.0"
  83. pre-commit = {version = "^3.2.1", python = ">=3.8,<4.0"}
  84. selenium = "^4.11.0"
  85. types-tabulate = "^0.9.0.3"
  86. pytest-benchmark = "^4.0.0"
  87. [tool.poetry.scripts]
  88. reflex = "reflex.reflex:cli"
  89. [build-system]
  90. requires = ["poetry-core>=1.5.1"]
  91. build-backend = "poetry.core.masonry.api"
  92. [tool.pyright]
  93. [tool.ruff]
  94. select = ["B", "D", "E", "F", "I", "SIM", "W"]
  95. ignore = ["B008", "D203", "D205", "D213", "D401", "D406", "D407", "E501", "F403", "F405", "F541"]
  96. target-version = "py37"
  97. [tool.ruff.per-file-ignores]
  98. "__init__.py" = ["F401"]
  99. "tests/*.py" = ["D100", "D103", "D104"]
  100. "reflex/.templates/*.py" = ["D100", "D103", "D104"]
  101. "*.pyi" = ["ALL"]