Add pyproject.toml and simplify CI workflow
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-03-22 21:59:50 +00:00
parent 56a68c0b1f
commit 97ccbb32a4

View File

@@ -8,7 +8,7 @@ version = "0.1.0"
description = "OpenAPI Mock Server Generator - Generate functional mock APIs from OpenAPI 3.x specs" description = "OpenAPI Mock Server Generator - Generate functional mock APIs from OpenAPI 3.x specs"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"
license = "MIT" license = {text = "MIT"}
authors = [ authors = [
{name = "MockAPI Team"} {name = "MockAPI Team"}
] ]
@@ -62,4 +62,4 @@ exclude_lines = [
"def __repr__", "def __repr__",
"raise NotImplementedError", "raise NotImplementedError",
"if __name__ == .__main__.:", "if __name__ == .__main__.:",
] ]