-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathmise.toml
More file actions
27 lines (21 loc) · 709 Bytes
/
mise.toml
File metadata and controls
27 lines (21 loc) · 709 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
min_version = "2024.9.5"
[tools]
python = "{{ get_env(name='PYTHON_VERSION', default='3.13') }}"
shfmt = "latest"
uv = "latest"
[env]
PROJECT_NAME = "{{ config_root | basename }}"
_.file = '.env'
_.python.venv = { path = ".venv", create = true, uv_create_args = ["--seed"] }
[settings]
python.uv_venv_auto = true
[tasks.install]
alias = "i"
description = "Install Python dependencies"
run = "uv sync --no-editable --no-install-project"
[tasks.install-dev]
description = "Install development dependencies"
run = "uv sync --only-dev --no-editable --no-install-project"
[tasks.build-sdist]
description = "Build source distribution"
run = "uvx --from build pyproject-build --installer=uv --sdist --verbose"