chore: initialize K1 connector pre-production scaffold
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
[build-system]
|
||||
requires = ["hatchling>=1.27,<2"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "ndc-xgrids-k1-connector"
|
||||
version = "0.1.0"
|
||||
description = "macOS-first, evidence-led research tooling for an XGRIDS Lixel K1"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12,<3.13"
|
||||
license = { text = "Proprietary" }
|
||||
authors = [{ name = "NODE.DC" }]
|
||||
dependencies = [
|
||||
"rich>=13.9,<15",
|
||||
"typer>=0.15,<1",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
k1link = "k1link.cli:app"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"mypy>=1.15,<2",
|
||||
"pytest>=8.3,<9",
|
||||
"ruff>=0.11,<1",
|
||||
]
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/k1link"]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-q"
|
||||
testpaths = ["tests"]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 100
|
||||
target-version = "py312"
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = ["E", "F", "I", "UP", "B", "SIM"]
|
||||
|
||||
[tool.mypy]
|
||||
python_version = "3.12"
|
||||
strict = true
|
||||
packages = ["k1link"]
|
||||
|
||||
Reference in New Issue
Block a user