-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1 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
[project]
name = "papertrail"
version = "0.1.2"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "ed cuss", email = "edcussmusic@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"attrs>=25.4.0",
"black>=26.1.0",
"io-adapters==0.2.2",
"pytest>=9.0.2",
"python-dotenv>=1.2.1",
]
[build-system]
requires = ["uv_build>=0.8.13,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"hypothesis>=6.151.4",
"ipykernel>=7.1.0",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"repo-mapper-rs>=0.4.0",
"ruff>=0.14.14",
"sphinx>=9.0.4",
]
# [project.entry-points.pytest11]
# papertrail = "papertrail.__main__"
[tool.coverage.run]
branch = true
source = ["src"]
omit = [
"src/papertrail/__main__.py",
"src/papertrail/core/logger.py"
]
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 95
[tool.pytest.ini_options]
norecursedirs = [
"docs/docs-build",
"docs/_build",
]