-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 988 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "serverless-openapi-generator"
version = "1.0.0"
authors = [
{ name="Cline", email="cline@example.com" },
]
description = "A standalone tool to generate OpenAPI schemas from serverless.yml files."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"PyYAML",
"requests",
"referencing",
"jsonschema-spec",
"openapi-spec-validator",
"pydantic>=2.10.6",
"rich>=14.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-mock>=3.14.1",
"requests-mock>=1.12.1",
"ruff>=0.12.3",
]
[project.scripts]
openapi-gen = "serverless_openapi_generator.openapi_generator:main"
openapi-validate = "openapi_spec_validator.__main__:main"