Update pyproject.toml
Committed 9317dc
--- a/pyproject.toml
+++ b/pyproject.toml
+[build-system]
+requires = ["poetry-core>=1.0.0"]
+build-backend = "poetry.core.masonry.api"
+
[tool.poetry]
name = "webint-live"
version = "0.0.24"
license = "AGPL-3.0-or-later"
packages = [{include="webint_live"}]
+[tool.pyright]
+reportOptionalMemberAccess = false
+
[tool.poetry.plugins."webapps"]
live = "webint_live:app"
+[[tool.poetry.source]]
+name = "main"
+url = "https://ragt.ag/code/pypi"
+
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
webint = ">=0.0"
sqlyte = {path="../sqlyte", develop=true}
webagt = {path="../webagt", develop=true}
webint = {path="../webint", develop=true}
-
-# [[tool.poetry.source]]
-# name = "main"
-# url = "https://ragt.ag/code/pypi"
-
-[build-system]
-requires = ["poetry-core>=1.0.0"]
-build-backend = "poetry.core.masonry.api"