-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (63 loc) · 1.85 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
[build-system]
requires = ["setuptools>=80.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-openapi"
description = "Generate an OpenAPI specification from a Python class definition"
readme = { file = "README.md", content-type = "text/markdown" }
keywords = ["openapi3", "openapi", "redoc", "swagger", "json-schema-generator", "dataclasses", "type-inspection"]
license = "MIT"
authors = [
{ name = "Levente Hunyadi", email = "hunyadi@gmail.com" }
]
maintainers = [
{ name = "Levente Hunyadi", email = "hunyadi@gmail.com" }
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
dependencies = [
"json_strong_typing >= 0.4"
]
dynamic = ["version"]
[project.optional-dependencies]
proxy = [
"aiohttp >= 3.13"
]
dev = [
"build",
"mypy",
"ruff",
"PyYAML",
"Pygments",
"types-PyYAML",
"types-Pygments"
]
[project.urls]
"Homepage" = "https://github.com/hunyadi/pyopenapi"
"Source" = "https://github.com/hunyadi/pyopenapi"
[tool.setuptools]
include-package-data = true
packages = ["pyopenapi"]
zip-safe = true
[tool.setuptools.dynamic]
version = { attr = "pyopenapi.__version__" }
[tool.setuptools.package-data]
"pyopenapi" = ["py.typed", "template.html"]
[tool.ruff]
line-length = 160
[tool.ruff.lint]
select = ["E", "F", "B", "I", "Q"]