-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 979 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
[project]
name = "pixl_cli"
version = "0.2.0rc0"
authors = [{ name = "PIXL authors" }]
description = "PIXL command line interface"
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"core==0.2.0rc0",
"click==8.1.7",
"tqdm==4.67.1",
]
[project.optional-dependencies]
test = [
"core[test]==0.2.0rc0",
"pytest-mock==3.14.*",
]
dev = [
"core[dev]==0.2.0rc0",
]
[project.scripts]
pixl = "pixl_cli.main:cli"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.coverage.report]
exclude_also = [
"def __repr__",
"if self.debug:",
"if settings.DEBUG",
"except subprocess.CalledProcessError as exception:",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING",
"class .*\\bProtocol\\):",
"@(abc\\.)?abstractmethod",
]