-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 842 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
40
41
42
43
44
45
46
47
48
[project]
name = "lintlify"
version = "0.1.0"
authors = [
{ name = "Alexandre Viau", email="alexandre.viau@flare.io>" }
]
requires-python = ">=3.14"
dependencies = [
"pydantic>=2.12.3",
"ty>=0.0.15",
"ruff>=0.14.3",
"python-frontmatter>=1.1.0",
"requests>=2.32",
"pytest>=8.4.2",
"types-requests>=2.32",
"flareio>=2.3.0",
]
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"
[tool.ruff.lint]
extend-select = [
"I",
"C411",
"C413",
"C414",
"C416",
"C417",
"C419",
]
[tool.ruff.lint.isort]
force-single-line = true
no-sections = true
lines-after-imports = 2
lines-between-types = 1
force-wrap-aliases = true
combine-as-imports = true
forced-separate = [
"typing",
]
[tool.ty.analysis]
allowed-unresolved-imports = [
"taxii2client.**",
]