30 lines
596 B
TOML
30 lines
596 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "craprniac"
|
|
version = "0.1.0"
|
|
description = "Completely Ridiculous Amateur Protocol for Radio Node IP Auto-Configuration"
|
|
authors = [
|
|
{ name="John Burwell", email="your.email@example.com" }
|
|
]
|
|
license = { text = "MIT" }
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
# put runtime dependencies here if needed later
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
minversion = "6.0"
|
|
addopts = "-ra -q"
|
|
testpaths = [
|
|
"tests",
|
|
]
|