-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.6 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openapi-cli-gen"
version = "0.0.18"
description = "Generate typed Python CLIs from OpenAPI specs with Pydantic model flattening into CLI flags"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "shivaam" },
]
keywords = ["openapi", "openapi3", "cli", "cli-generator", "code-generator", "pydantic", "pydantic-settings", "python", "rest-api", "swagger"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydantic-settings>=2.13",
"email-validator>=2.0",
"jsonref>=1.1",
"openapi-pydantic>=0.5",
"httpx>=0.27",
"pyyaml>=6.0",
"rich>=13.0",
"jinja2>=3.1",
"typer>=0.12",
"datamodel-code-generator>=0.56",
]
[project.optional-dependencies]
dev = [
"ruff>=0.4",
"fastapi>=0.115",
"uvicorn>=0.30",
"pydanclick>=0.5",
"pytest>=8.0",
]
[project.scripts]
openapi-cli-gen = "openapi_cli_gen.cli:main"
[project.urls]
Homepage = "https://github.com/shivaam/openapi-cli-gen"
Repository = "https://github.com/shivaam/openapi-cli-gen"
Issues = "https://github.com/shivaam/openapi-cli-gen/issues"