-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpyproject.toml
36 lines (30 loc) · 948 Bytes
/
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
[project]
name = "default"
version = "0.1.0"
description = "This repository contains configurations to set up a Python development environment using VSCode's Dev Container feature. The environment includes uv and Ruff."
authors = [{ name = "a5chin", email = "[email protected]" }]
maintainers = [{ name = "a5chin", email = "[email protected]" }]
requires-python = ">=3.9"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"google-cloud-logging>=3.11.3",
"pydantic>=2.10.5",
"pydantic-settings>=2.7.1",
]
[tool.uv]
dev-dependencies = [
"cookiecutter>=2.6.0",
"cookiecutter-data-science>=2.1.0",
"mkdocs-material>=9.5.50",
"pre-commit>=4.1.0",
"pyright>=1.1.392.post0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.9.2",
]
[tool.hatch.build.targets.wheel]
packages = ["tools"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"