format pyproject.toml

This commit is contained in:
Lendemor 2024-12-13 02:24:02 +01:00
parent bd56d614e9
commit f77c85f93f

View File

@ -14,16 +14,9 @@ readme = "README.md"
homepage = "https://reflex.dev" homepage = "https://reflex.dev"
repository = "https://github.com/reflex-dev/reflex" repository = "https://github.com/reflex-dev/reflex"
documentation = "https://reflex.dev/docs/getting-started/introduction" documentation = "https://reflex.dev/docs/getting-started/introduction"
keywords = [ keywords = ["web", "framework"]
"web", classifiers = ["Development Status :: 4 - Beta"]
"framework", packages = [{ include = "reflex" }]
]
classifiers = [
"Development Status :: 4 - Beta",
]
packages = [
{include = "reflex"}
]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.9" python = "^3.9"
@ -93,19 +86,7 @@ build-backend = "poetry.core.masonry.api"
[tool.ruff] [tool.ruff]
target-version = "py39" target-version = "py39"
lint.isort.split-on-trailing-comma = false lint.isort.split-on-trailing-comma = false
lint.select = [ lint.select = ["B", "D", "E", "ERA", "F", "FURB", "I", "PTH", "RUF", "SIM", "W"]
"B",
"D",
"E",
"ERA",
"F",
"FURB",
"I",
"W",
"PTH",
"RUF",
"SIM",
]
lint.ignore = ["B008", "D205", "E501", "F403", "SIM115", "RUF006", "RUF012"] lint.ignore = ["B008", "D205", "E501", "F403", "SIM115", "RUF006", "RUF012"]
lint.pydocstyle.convention = "google" lint.pydocstyle.convention = "google"