15 lines
325 B
TOML
15 lines
325 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["app"]
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
target-version = "py37"
|
|
select = ["E", "F", "I", "N", "W", "B"]
|
|
ignore = []
|
|
|
|
[tool.ruff.isort]
|
|
known-third-party = ["fastapi", "pydantic", "sqlalchemy", "alembic"] |