26 lines
440 B
TOML
26 lines
440 B
TOML
[project]
|
|
name = "fluxent"
|
|
version = "0.1.0"
|
|
description = "Trace the cost within every flow."
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pycountry>=26.2.16",
|
|
"pydantic>=2.13.4",
|
|
"pydantic-extra-types>=2.11.1",
|
|
"python-ulid[pydantic]>=3.1.0",
|
|
]
|
|
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.1.1",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 100
|