pyproject.toml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. [tool.poetry]
  2. name = "reflex"
  3. version = "0.3.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"
  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.8"
  41. typer = ">=0.4.2,<1"
  42. uvicorn = "^0.20.0"
  43. watchdog = "^2.3.1"
  44. watchfiles = "^0.19.0"
  45. websockets = "^10.4"
  46. starlette-admin = "^0.9.0"
  47. alembic = "^1.11.1"
  48. platformdirs = "^3.10.0"
  49. distro = {version = "^1.8.0", platform = "linux"}
  50. python-engineio = "!=4.6.0"
  51. wrapt = [
  52. {version = "^1.14.0", python = ">=3.11"},
  53. {version = "^1.11.0", python = "<3.11"},
  54. ]
  55. packaging = "^23.1"
  56. tabulate = "^0.9.0"
  57. pipdeptree = "^2.13.0"
  58. [tool.poetry.group.dev.dependencies]
  59. pytest = "^7.1.2"
  60. pytest-mock = "^3.10.0"
  61. pyright = "^1.1.229"
  62. darglint = "^1.8.1"
  63. toml = "^0.10.2"
  64. pytest-asyncio = "^0.20.1"
  65. pytest-cov = "^4.0.0"
  66. black = "^22.10.0"
  67. ruff = "^0.0.244"
  68. pandas = [
  69. {version = "^1.5.3", python = ">=3.8,<4.0"},
  70. ]
  71. pillow = [
  72. {version = "^10.0.0", python = ">=3.8,<4.0"}
  73. ]
  74. plotly = "^5.13.0"
  75. asynctest = "^0.13.0"
  76. pre-commit = {version = "^3.2.1", python = ">=3.8,<4.0"}
  77. selenium = "^4.11.0"
  78. types-tabulate = "^0.9.0.3"
  79. [tool.poetry.scripts]
  80. reflex = "reflex.reflex:cli"
  81. [build-system]
  82. requires = ["poetry-core>=1.5.1"]
  83. build-backend = "poetry.core.masonry.api"
  84. [tool.pyright]
  85. [tool.ruff]
  86. select = ["B", "D", "E", "F", "I", "SIM", "W"]
  87. ignore = ["B008", "D203", "D205", "D213", "D401", "D406", "D407", "E501", "F403", "F405", "F541"]
  88. target-version = "py37"
  89. [tool.ruff.per-file-ignores]
  90. "__init__.py" = ["F401"]
  91. "tests/*.py" = ["D100", "D103", "D104"]
  92. "reflex/.templates/*.py" = ["D100", "D103", "D104"]
  93. "*.pyi" = ["ALL"]