pyproject.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. [tool.poetry]
  2. name = "pynecone"
  3. version = "0.1.23"
  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. fastapi = "^0.88.0"
  27. gunicorn = "^20.1.0"
  28. plotly = "^5.10.0"
  29. pydantic = "1.10.2"
  30. sqlmodel = "^0.0.8"
  31. typer = "0.4.2"
  32. uvicorn = "^0.20.0"
  33. rich = "^12.6.0"
  34. redis = "^4.3.5"
  35. httpx = "^0.23.1"
  36. python-socketio = "^5.7.2"
  37. psutil = "^5.9.4"
  38. websockets = "^10.4"
  39. cloudpickle = "^2.2.1"
  40. python-multipart = "^0.0.5"
  41. watchdog = "^2.3.1"
  42. [tool.poetry.group.dev.dependencies]
  43. pytest = "^7.1.2"
  44. pytest-mock = "^3.10.0"
  45. pyright = "^1.1.229"
  46. darglint = "^1.8.1"
  47. toml = "^0.10.2"
  48. pytest-asyncio = "^0.20.1"
  49. black = "^22.10.0"
  50. ruff = "^0.0.244"
  51. pandas = [
  52. {version = "^1.5.3", python = ">=3.8,<4.0"},
  53. {version = "^1.1", python = ">=3.7, <3.8"}
  54. ]
  55. pre-commit = {version = "^3.2.1", python = ">=3.8,<4.0"}
  56. [tool.poetry.scripts]
  57. pc = "pynecone.pc:main"
  58. [build-system]
  59. requires = ["poetry-core>=1.0.0"]
  60. build-backend = "poetry.core.masonry.api"
  61. [tool.pyright]
  62. [tool.ruff]
  63. select = ["B", "D", "E", "F", "I", "SIM", "W"]
  64. ignore = ["B008", "D203", "D205", "D213", "D401", "D406", "D407", "E501", "F403", "F405", "F541"]
  65. target-version = "py37"
  66. [tool.ruff.per-file-ignores]
  67. "__init__.py" = ["F401"]
  68. "tests/*.py" = ["D100", "D103", "D104"]
  69. "pynecone/.templates/*.py" = ["D100", "D103", "D104"]