forked from JenspederM/uvmono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (33 loc) · 862 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
[project]
name = "pymono"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Jens Peder Meldgaard", email = "[email protected]" }]
requires-python = ">=3.11"
dependencies = [
"fire>=0.7.0",
"jinja2",
"rich>=13.9.4",
]
[project.scripts]
pymono = "pymono:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.workspace]
members = ["packages/package-a", "packages/package-b", "packages/package-d", "packages/package-c"]
[dependency-groups]
dev = ["pytest>=8.3.4", "pytest-cov>=6.0.0"]
[tool.pytest.ini_options]
addopts = """
--cov-report=term \
--cov-report=xml:coverage.xml \
--cov=pymono \
-ra
-vv"""
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]