feat(backend): scaffold cyclone package skeleton

This commit is contained in:
Tyler
2026-06-19 15:26:52 -06:00
parent 5ed59ef01a
commit ce7fb50e79
5 changed files with 88 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cyclone"
version = "0.1.0"
description = "Cyclone EDI suite — X12 837P/835 parser"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.6,<3",
"click>=8.1,<9",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.1",
]
[project.scripts]
cyclone = "cyclone.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"