-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 1006 Bytes
/
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
[project]
name = "artichoke-nightly"
version = "0"
license = {file = "LICENSE"}
classifiers = ["Private :: Do Not Upload"]
dependencies = [
"stamina==24.3.0",
"validators==0.34.0",
]
requires-python = ">= 3.12"
[project.optional-dependencies]
dev = [
"black==24.10.0",
"mypy==1.13.0",
"ruff==0.8.1",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target-version = ['py312']
include = '\.pyi?$'
[tool.isort]
atomic = true
profile = "black"
line_length = 88
skip_gitignore = true
[tool.mypy]
python_version = "3.12"
strict = true
show_error_codes = true
pretty = true
exclude = [
"^.git$",
"^venv$",
]
[[tool.mypy.overrides]]
module = ["validators.*"]
ignore_missing_imports = true
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["COM812", "D", "EM", "S603", "T201", "TRY003", "UP007"]
[tool.setuptools.packages.find]
include = ["artichoke_nightly"]
exclude = ["node_modules"]