FiWiControl/pyproject.toml

28 lines
588 B
TOML

[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fiwicontrol"
version = "0.1.0"
description = "FiWiControl: command execution (SSH/ush) and power rig control in one package."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Umber" }]
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]