Working initial version

This commit is contained in:
Adrian Rumpold
2025-04-23 11:30:03 +02:00
commit 54a3aba531
34 changed files with 5583 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "formex-viewer"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Adrian Rumpold", email = "a.rumpold@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"fastapi[cli,standard]>=0.115.12",
"httpx>=0.28.1",
"lxml>=5.3.2",
]
[project.scripts]
formex-viewer = "formex_viewer:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"