Files
cyclone/backend/pyproject.toml
T

35 lines
694 B
TOML

[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",
"fastapi>=0.110,<1",
"uvicorn[standard]>=0.27,<1",
"python-multipart>=0.0.9,<1",
"sqlalchemy>=2.0,<3",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.1",
"httpx>=0.27,<1",
]
[project.scripts]
cyclone = "cyclone.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"