-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1006 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1006 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 = "combinators-py"
version = "0.5.0"
authors = [{name = "prostomarkeloff", email="prostomarkeloff@was.there" }]
description = "Declarative way to build systems"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"kungfu-fp",
]
[project.optional-dependencies]
test = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-cov>=5.0",
"hypothesis>=6.100",
]
[tool.uv.sources]
kungfu = { git = "https://github.com/timoniq/kungfu.git" }
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
filterwarnings = [
"ignore::DeprecationWarning:hypothesis.*",
]
[tool.coverage.run]
branch = true
source = ["combinators"]
omit = [
"combinators/**/fluent/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if typing.TYPE_CHECKING:",
"if TYPE_CHECKING:",
"@typing.overload",
"@overload",
]
show_missing = true
skip_covered = false