pyproject.toml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. [tool.poetry]
  2. name = "reflex"
  3. version = "0.1.34"
  4. description = "Web apps in pure Python."
  5. license = "Apache-2.0"
  6. authors = [
  7. "Nikhil Rao <nikhil@pynecone.io>",
  8. "Alek Petuskey <alek@pynecone.io>",
  9. ]
  10. readme = "README.md"
  11. homepage = "https://pynecone.io"
  12. repository = "https://github.com/pynecone-io/pynecone"
  13. documentation = "https://pynecone.io/docs/getting-started/introduction"
  14. keywords = [
  15. "web",
  16. "framework",
  17. ]
  18. classifiers = [
  19. "Development Status :: 4 - Beta",
  20. ]
  21. packages = [
  22. {include = "reflex"}
  23. ]
  24. [tool.poetry.dependencies]
  25. python = "^3.7"
  26. cloudpickle = "^2.2.1"
  27. fastapi = "^0.96.0"
  28. gunicorn = "^20.1.0"
  29. httpx = "^0.23.0"
  30. jinja2 = "^3.1.2"
  31. plotly = "^5.13.0"
  32. psutil = "^5.9.4"
  33. pydantic = "^1.10.2"
  34. python-multipart = "^0.0.5"
  35. python-socketio = "^5.7.0"
  36. redis = "^4.3.5"
  37. rich = "^13.0.0"
  38. sqlmodel = "^0.0.8"
  39. typer = "0.4.2"
  40. uvicorn = "^0.20.0"
  41. watchdog = "^2.3.1"
  42. websockets = "^10.4"
  43. starlette-admin = "^0.9.0"
  44. python-dotenv = "^0.13.0"
  45. [tool.poetry.group.dev.dependencies]
  46. pytest = "^7.1.2"
  47. pytest-mock = "^3.10.0"
  48. pyright = "^1.1.229"
  49. darglint = "^1.8.1"
  50. toml = "^0.10.2"
  51. pytest-asyncio = "^0.20.1"
  52. pytest-cov = "^4.0.0"
  53. black = "^22.10.0"
  54. ruff = "^0.0.244"
  55. pandas = [
  56. {version = "^1.5.3", python = ">=3.8,<4.0"},
  57. {version = "^1.1", python = ">=3.7, <3.8"}
  58. ]
  59. asynctest = "^0.13.0"
  60. pre-commit = {version = "^3.2.1", python = ">=3.8,<4.0"}
  61. [tool.poetry.scripts]
  62. reflex = "reflex.reflex:main"
  63. [build-system]
  64. requires = ["poetry-core>=1.5.1"]
  65. build-backend = "poetry.core.masonry.api"
  66. [tool.pyright]
  67. [tool.ruff]
  68. select = ["B", "D", "E", "F", "I", "SIM", "W"]
  69. ignore = ["B008", "D203", "D205", "D213", "D401", "D406", "D407", "E501", "F403", "F405", "F541"]
  70. target-version = "py37"
  71. [tool.ruff.per-file-ignores]
  72. "__init__.py" = ["F401"]
  73. "tests/*.py" = ["D100", "D103", "D104"]
  74. "reflex/.templates/*.py" = ["D100", "D103", "D104"]