-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (28 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
36 lines (28 loc) · 849 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "modern_python"
version = "0.0.1"
description = "A template for developing production-ready Python applications."
authors = [
{ name = "Miguel Villa Floran", email = "miguel.villafloran@gmail.com" },
]
requires-python = ">=3.11,<3.14"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = ["utils", "core", "typer>=0.12.5"]
[tool.uv.sources]
utils = { workspace = true }
core = { workspace = true }
[tool.uv.workspace]
members = ["shared/*", "src/*"]
[dependency-groups]
dev = ["pre-commit", "ipykernel", "pytest", "pytest-cov"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["shared", "src"]
[tool.pytest.ini_options]
cache_dir = ".pytest_cache"
pythonpath = [".", "scripts", "src"]