-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (61 loc) · 981 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
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "art"
dynamic = ["version"]
description = "Artifact manager"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Valohai", email = "[email protected]" },
]
dependencies = [
"boto3",
"pyyaml",
]
[project.optional-dependencies]
mypy = [
"mypy~=1.9.0",
"types-PyYAML",
]
test = [
"build",
"pytest-cov",
"pytest~=8.1",
]
[project.scripts]
art = "art.command:run_command"
[tool.hatch.version]
path = "art/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/art",
]
[tool.pytest.ini_options]
norecursedirs = [".git", ".tox"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = [
"D100",
"D101",
"D102",
"D103",
"D104",
"D107",
"D211",
"D213",
"SIM105",
]
select = [
"D",
"E",
"F",
"I",
"SIM",
"W",
]
[[tool.mypy.overrides]]
module = "boto3.*"
ignore_missing_imports = true