43 lines
774 B
TOML
43 lines
774 B
TOML
[tool.poetry]
|
|
name = "pynecone-io"
|
|
version = "0.1.2"
|
|
description = ""
|
|
authors = [
|
|
"Nikhil Rao <nikhil@pynecone.io>",
|
|
"Alek Petuskey <alek@pynecone.io>",
|
|
]
|
|
packages = [
|
|
{include = "pynecone"}
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7.2"
|
|
fastapi = "^0.75.0"
|
|
gunicorn = "^20.1.0"
|
|
plotly = "^5.10.0"
|
|
pydantic = "1.9.0"
|
|
requests = "^2.28.1"
|
|
sqlmodel = "^0.0.6"
|
|
typer = "^0.4.1"
|
|
uvicorn = "^0.17.6"
|
|
rich = "^12.6.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^7.1.2"
|
|
pyright = "^1.1.229"
|
|
darglint = "^1.8.1"
|
|
pydocstyle = "^6.1.1"
|
|
toml = "^0.10.2"
|
|
isort = "^5.10.1"
|
|
pylint = "^2.14.5"
|
|
pytest-asyncio = "^0.20.1"
|
|
|
|
[tool.poetry.scripts]
|
|
pc = "pynecone.pc:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pyright]
|