31 lines
586 B
TOML
31 lines
586 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "jsonxmludpakker"
|
|
version = "0.1.0"
|
|
description = "JSON/XML udpakker med DDL og SQL generator"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"PyYAML>=6.0",
|
|
"python-dotenv>=1.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
jsonxml-extract = "jsonxmludpakker.cli_extract:main"
|
|
jsonxml-ddl = "jsonxmludpakker.cli_ddl:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I"]
|