-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
66 lines (57 loc) · 1.22 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "pallets-web"
version = "1.0.0"
description = "Pallets website and content."
readme = "README.md"
license = {file = "LICENSE.txt"}
maintainers = [{name = "Pallets", email = "[email protected]"}]
classifiers = ["Private :: Do Not Upload"]
requires-python = "~=3.12.0"
dependencies = [
"beautifulsoup4",
"feedgen",
"flask",
"flask-sqlalchemy-lite",
"gunicorn",
"lxml",
"markdown-it-py",
"pygments",
]
[project.urls]
Home = "https://palletsprojects.com"
Source = "https://github.com/pallets/pallets-web/"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "pallets"
[tool.mypy]
files = ["src/pallets"]
show_error_codes = true
pretty = true
strict = true
[[tool.mypy.overrides]]
module = [
"feedgen.*",
]
ignore_missing_imports = true
[tool.pyright]
include = ["src/pallets"]
[tool.ruff]
src = ["src"]
fix = true
unsafe-fixes = true
show-fixes = true
output-format = "full"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle error
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"W", # pycodestyle warning
]
[tool.ruff.lint.isort]
force-single-line = true
order-by-type = false