-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.05 KB
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 = "danom"
version = "0.10.3"
description = "Functional streams and monads"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "ed cuss", email = "edcussmusic@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"attrs>=25.4.0",
]
[project.scripts]
danom = "danom:main"
[build-system]
requires = ["uv_build>=0.8.13,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"hypothesis>=6.148.2",
"ipykernel>=7.1.0",
"papertrail>=0.1.2",
"pre-commit>=4.5.0",
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
"pytest-codspeed>=4.2.0",
"pytest-cov>=7.0.0",
"repo-mapper-rs>=0.4.0",
"ruff>=0.14.6",
"sphinx>=9.0.4",
"ty>=0.0.8",
]
[tool.coverage.run]
parallel = true
concurrency = ["multiprocessing"]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 95
[project.entry-points.pytest11]
papertrail = "papertrail.__main__"
[tool.pytest]
# addopts = ["--codspeed"]
[tool.ty.src]
include = ["src", "tests"]