my eye

Update pyproject

Committed 08ad9b

--- a/pyproject.toml
+++ b/pyproject.toml

+[build-system]
+requires = ["poetry-core>=1.0.0"]
+build-backend = "poetry.core.masonry.api"
+
 [tool.poetry]
 name = "webint-search"
 version = "0.0.19"
 license = "AGPL-3.0-or-later"
 packages = [{include="webint_search"}]
 
+[tool.pyright]
+reportGeneralTypeIssues = false
+reportOptionalMemberAccess = false
+
 [tool.poetry.plugins."webapps"]
 search = "webint_search:app"
 
+[[tool.poetry.source]]
+name = "main"
+url = "https://ragt.ag/code/pypi"
+
 [tool.poetry.dependencies]
 python = ">=3.10,<3.11"
 webint = ">=0.0"
 webint = {path="../webint", develop=true}
 webagt = {path="../webagt", develop=true}
 microformats = {path="../python-microformats", develop=true}
-
-# [[tool.poetry.source]]
-# name = "main"
-# url = "https://ragt.ag/code/pypi"
-
-[tool.pyright]
-reportGeneralTypeIssues = false
-reportOptionalMemberAccess = false
-
-[build-system]
-requires = ["poetry-core>=1.0.0"]
-build-backend = "poetry.core.masonry.api"