-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (88 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
99 lines (88 loc) · 2.07 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.2.1"]
[project]
authors = [{ name = "Rafał Krupiński", email = "rafal@lapidary.dev" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
"Typing :: Typed",
]
dependencies = [
"click~=8.2",
"httpx~=0.28.0",
"libcst~=1.5",
"openapi-pydantic~=0.5.0",
"pybase62~=1.0",
"pydantic~=2.0",
"python-mimeparse>=1.6,<3",
"ruamel-yaml~=0.18.0",
"tomli-w~=1.0",
]
description = "Python async OpenAPI client library generator"
keywords = [
"Code Generation",
"Code Generator",
"CodeGen",
"OpenAPI Tools",
"OpenAPI",
"OpenAPI3",
]
license = "AGPL-3.0"
name = "lapidary-render"
readme = "Readme.md"
requires-python = "~=3.13"
version = "0.12.1"
[project.urls]
Homepage = "https://lapidary.dev/"
[project.scripts]
lapidary-render = "lapidary_render:app"
[dependency-groups]
dev = [
"pre-commit~=4.0",
"pytest~=9.0",
"pytest-asyncio~=1.0",
"pytest-httpx~=0.36.0",
]
docs = [
"markdown-callouts~=0.4.0",
"markdown-exec~=1.11",
"mkdocs-llmstxt~=0.3.2",
"mkdocs-material~=9.6",
"mkdocs-minify-plugin~=0.8.0",
"mkdocs-section-index~=0.3.10",
"mkdocstrings[python]~=0.30.1",
"mkdocs~=1.6",
]
[tool.mypy]
exclude = ["tests/e2e"]
ignore_missing_imports = true
mypy_path = "src"
namespace_packages = true
packages = ['lapidary_render']
python_version = "3.13"
[tool.pytest.ini_options]
addopts = "--color=yes"
asyncio_default_fixture_loop_scope = 'function'
log_cli = true
norecursedirs = ['tests/e2e']
pythonpath = ["src", "tests"]
testpaths = ["tests"]
[tool.ruff]
extend-exclude = ["tests/e2e"]
line-length = 120
src = ["src"]
target-version = "py313"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
extend-ignore = [
'F401', 'F403', 'F405',
'UP040', 'UP008',
]
extend-select = ['I', 'UP']
[tool.ruff.lint.isort]
combine-as-imports = true