Initieret
This commit is contained in:
30
pyproject.toml
Normal file
30
pyproject.toml
Normal file
@@ -0,0 +1,30 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user