Project restart

This commit is contained in:
2025-12-29 10:46:05 +01:00
commit 59d19cb48c
388 changed files with 48020 additions and 0 deletions

38
src/pyproject.toml Normal file
View File

@@ -0,0 +1,38 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name="testium"
requires-python = ">=3.11"
authors = [
{name = "François Dausseur", email = "francois@beafrancois.fr"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
dependencies = [
"setuptools",
"pyside6",
"pyyaml",
"pyserial",
"colorama",
"matplotlib",
"telnetlib3",
"jinja2",
"pexpect",
"gitpython",
"junit-xml",
"lxml",
]
dynamic = ["version"]
[project.scripts]
testium = "testium:main"
[tool.setuptools.package-data]
docpkg = ["*.pdf"]
[tool.setuptools.dynamic]
version = {file = ["VERSION"]}