-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.1 KB
/
pyproject.toml
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
[tool.poetry]
name = "spec2sdk"
version = "1.1+SNAPSHOT"
description = "Generate Pydantic models and API client code from OpenAPI 3.x specifications"
authors = ["moneymeets <[email protected]>"]
readme = "README.md"
repository = "https://github.com/moneymeets/spec2sdk"
packages = [
{ include="spec2sdk" },
]
keywords = ["openapi", "pydantic", "code-generator", "openapi-codegen"]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "~3.12"
jinja2 = "*"
openapi-spec-validator = "*"
pydantic = "~2"
pyhumps = "*"
ruff = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
[tool.coverage.run]
branch = true
source = ["."]
omit = ["**/tests/**"]
[tool.poetry.scripts]
spec2sdk = "spec2sdk.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"