modyml/pyproject.toml
Yuyao Huang (Sam) cd81214784 v0.1.0
2025-10-27 15:34:39 +08:00

24 lines
407 B
TOML

[project]
name = "modyml"
version = "0.1.0"
description = "Modular Configuation Library"
readme = "README.md"
authors = [
{ name = "Yuyao Huang (Sam)", email = "huangyuyao@outlook.com" }
]
requires-python = ">=3.8"
dependencies = [
"easydict",
"pyyaml",
]
[build-system]
requires = ["uv_build>=0.9.3,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest",
"rich",
]