-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 704 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "admin_migrations"
version = "0.1"
[project.scripts]
run-admin-migrations = "admin_migrations.__main__:main"
render-admin-migrations-readme = "admin_migrations.__main__:_render_readme"
[tool.setuptools]
packages = {find = {exclude=["data*", "scripts*"]}}
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = [
# pyflakes
"F",
# pycodestyle
"E", "W",
# isort
"I",
# pep8-naming
"N",
# pypugrade
"UP",
# flake8-logging-format
"G",
# flake8-tidy-imports
"TID",
]
extend-ignore = ["UP031"]
[tool.ruff.lint.pycodestyle]
max-line-length = 88