Restructure pyproject.toml
Committed f4544f
--- a/pyproject.toml
+++ b/pyproject.toml
+[build-system]
+requires = ["poetry-core>=1.0.0"]
+build-backend = "poetry.core.masonry.api"
+
[tool.poetry]
name = "webint-mentions"
-version = "0.0.9"
+version = "0.0.10"
description = "manage mentions on your website"
keywords = ["Webmention"]
authors = ["Angelo Gladding <angelo@ragt.ag>"]
license = "AGPL-3.0-or-later"
packages = [{include="webint_mentions"}]
+[tool.pyright]
+reportGeneralTypeIssues = false
+reportOptionalMemberAccess = false
+
[tool.poetry.plugins."webapps"]
mentions = "webint_mentions: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}
newmath = {path="../newmath", 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"