-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) · 835 Bytes
/
Copy pathpyproject.toml
File metadata and controls
57 lines (47 loc) · 835 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
49
50
51
52
53
54
55
56
57
[project]
name = "eyegen"
requires-python = ">=3.12"
dependencies = [
"ruff>=0.15.19",
"tool>=0.8.0",
"pillow>=10.0.0",
"typer>=0.9.0",
]
version = "0.2.2"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.scripts]
generate = "eyegen.cli:app"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["eyegen*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = [
"E", "W",
"F",
"I",
"B",
"T20",
"S",
"PLR0915",
"C90",
"DTZ",
"ASYNC",
]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.pylint]
max-statements = 40
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101"]