pyproject.toml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. [tool.poetry]
  2. name = "pynecone"
  3. version = "0.1.32"
  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 = "pynecone"}
  23. ]
  24. [tool.poetry.dependencies]
  25. python = "^3.7"
  26. cloudpickle = "^2.2.1"
  27. fastapi = "^0.92.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. python-dotenv = "0.13.0"
  44. [tool.poetry.group.dev.dependencies]
  45. pytest = "^7.1.2"
  46. pytest-mock = "^3.10.0"
  47. pyright = "^1.1.229"
  48. darglint = "^1.8.1"
  49. toml = "^0.10.2"
  50. pytest-asyncio = "^0.20.1"
  51. pytest-cov = "^4.0.0"
  52. black = "^22.10.0"
  53. ruff = "^0.0.244"
  54. pandas = [
  55. {version = "^1.5.3", python = ">=3.8,<4.0"},
  56. {version = "^1.1", python = ">=3.7, <3.8"}
  57. ]
  58. pre-commit = {version = "^3.2.1", python = ">=3.8,<4.0"}
  59. [tool.poetry.scripts]
  60. pc = "pynecone.pc:main"
  61. [build-system]
  62. requires = ["poetry-core>=1.0.0"]
  63. build-backend = "poetry.core.masonry.api"
  64. [tool.pyright]
  65. [tool.ruff]
  66. select = ["B", "D", "E", "F", "I", "SIM", "W"]
  67. ignore = ["B008", "D203", "D205", "D213", "D401", "D406", "D407", "E501", "F403", "F405", "F541"]
  68. target-version = "py37"
  69. [tool.ruff.per-file-ignores]
  70. "__init__.py" = ["F401"]
  71. "tests/*.py" = ["D100", "D103", "D104"]
  72. "pynecone/.templates/*.py" = ["D100", "D103", "D104"]