File size: 522 Bytes
efd7cfc 1efa4be efd7cfc |
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 |
[project]
name = "address"
version = "0.1.0"
description = "Vietnamese address converter for post-merger administrative units (01/07/2025)"
requires-python = ">=3.12"
dependencies = [
"click",
"underthesea>=9.2.11",
]
[project.scripts]
address-convert = "src.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src", "data"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = ["pytest", "vietnamadminunits"]
|