-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
63 lines (57 loc) · 1.03 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
[project]
name = "monorepo"
version = "0.0.0"
description = "Example of monorepo setup using UV"
authors = [
{ name = "Aleksander Kowalski" }
]
requires-python = ">=3.13"
readme = "README.md"
dependencies = [
"python-dotenv>=1.1.0",
"pyyaml-env-tag>=1.1",
]
[tool.uv.sources]
utils = { workspace = true }
core = { workspace = true }
[tool.uv.workspace]
members = [
"shared/*", "src/*"
]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"mypy>=1.15.0",
"bandit>=1.8.3",
"docformatter>=1.7.5",
"ruff>=0.9.10",
"pre-commit>=3.8.0",
"types-PyYAML>=6.0.12",
"types-requests>=2.32",
"utils",
"core",
]
package = false
[tool.ruff]
lint.ignore = ["E501"]
extend-exclude = [
"__pycache__",
".eggs",
".git",
".venv",
"build",
"dist",
"notebooks",
".cache"
]
line-length = 100
[tool.pyright]
exclude = [".venv", ".github", "docs", "tests"]
include = ["src"]
pythonVersion = "3.13"
venvPath = "."
venv = ".venv"
[tool.pytest.ini_options]
cache_dir = "./.cache/pytest"
pythonpath = [".", "scripts"]