-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (40 loc) · 1.08 KB
/
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
40
41
42
43
44
45
46
[project]
name = "tapyr_template"
version = "0.2.0"
description = ""
authors = [{name = "Appsilon.com", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"loguru>=0.7.2",
"pydantic-settings>=2.5.2",
"python-dotenv>=1.0.1",
"rich>=13.8.1",
"shiny>=1.1.0",
]
[tool.coverage.run]
source = ["tapyr_template"]
[tool.uv]
dev-dependencies = [
"icecream>=2.1.3",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"playwright>=1.47.0",
"pre-commit>=3.8.0",
"pyright>=1.1.380",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"pytest-playwright>=0.5.2",
"pytest-watch>=4.2.0",
"ruff>=0.6.9",
"rsconnect-python>=1.24.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "--cov . --cov-report=lcov:lcov.info --cov-report=term"
filterwarnings = [
# This warning is caused by the `jupyter_client` package and is not relevant to us
"ignore:Jupyter is migrating its paths to use standard platformdirs.*:DeprecationWarning:jupyter_client.connect"
]