-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (60 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
64 lines (60 loc) · 1.33 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
58
59
60
61
62
63
64
[project]
authors = [
{name = "Stefane Fermigier", email = "sf@abilian.com"},
]
requires-python = ">=3.10"
dependencies = []
name = "prescrypt"
version = "0.9.6"
description = ""
readme = "README.md"
[project.scripts]
prescrypt = "prescrypt.main:main"
py2js = "prescrypt.main:main"
[dependency-groups]
dev = [
# Generic
"abilian-devtools<1.0.0,>=0.5.2",
"devtools<1.0.0,>=0.11.0",
# Test
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"nox>=2025.5.1",
# Types & Lint
"ruff>=0.14.11",
"ty>=0.0.11",
"pre-commit>=4.5.1",
# JS infra for tests
"quickjs<2.0.0,>=1.19.2",
# Doc
"mkdocs-material",
# Misc
"attrs<27.0.0,>=23.1.0",
"snoop<1.0.0,>=0.4.3",
"pyupgrade>=3.21.2",
]
doc = [
"mkdocs>=1.6.1",
"mkdocs-git-revision-date-localized-plugin>=1.5.0",
"mkdocs-material>=9.2.0b2",
"mkdocs-material-extensions>=1.3.1",
"mkdocs-macros-plugin>=1.5.0",
"mkdocs-minify-plugin>=0.8.0",
"mkdocstrings[python]>=1.0.0",
"pymdown-extensions>=10.20",
]
[build-system]
requires = ["uv_build>=0.9.13,<0.10.0"]
build-backend = "uv_build"
[tool.coverage.report]
exclude = []
omit = [
"src/prescrypt/testing/**/*.py",
"src/prescrypt/tools/**/*.py",
]
precision = 2
# ignore_errors = true
# skip_covered = true
# skip_empty = true
# fail_under = 90
# show_missing = true