generated from Appsilon/tapyr-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.23 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
[tool.poetry]
name = "tapyr_template"
version = "0.1.0"
description = ""
authors = ["Appsilon.com <[email protected]>"]
readme = "README.md"
packages = [{include = "tapyr_template"}]
[tool.coverage.run]
source = ["tapyr_template"]
[tool.poetry.dependencies]
python = "^3.10"
shiny = "^0.9.0"
rich = "^13.7.1"
loguru = "^0.7.2"
pydantic-settings = "^2.2.1"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
icecream = "^2.1.3" # For debugging, print() on steroids
ipykernel = "^6.29.4" # For running Jupyter notebooks in VS Code
ipywidgets = "^8.1.2" # For running Jupyter notebooks in VS Code
pre-commit = "^3.7.0"
ruff = "^0.4.1"
rsconnect-python = "^1.23.0"
pytest = "^8.1.1"
playwright = "^1.43.0"
pytest-playwright = "^0.4.4"
requests = "^2.31.0"
tenacity = "^8.2.3"
pytest-watch = "^4.2.0"
pytest-cov = "^5.0.0"
pyright = "^1.1.360"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[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"
]