-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (54 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "apispec-ui"
version = "1.0.1"
description = "Generate UI interactive API's from APISpec specifications."
authors = ["Renato Damas <[email protected]>"]
license = "MIT"
readme = "README.rst"
packages = [
{ include = "*", from = "src" }
]
homepage = ""
repository = "https://github.com/codectl/apispec-ui"
documentation = ""
keywords = [
"flaskful",
"swagger",
"openapi",
"oas",
"oas2",
"oas3",
"rest",
"api",
"web",
"flask",
"python",
"python3",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
apispec = { extras = ["yaml"], version = "^6.3.0", optional = true }
environs = "^9.5.0"
flask = { version = "^2.2.3", optional = true }
gunicorn = ">=20.1,<22.0"
python = "^3.8"
[tool.poetry.dev-dependencies]
apispec = { extras = ["yaml"], version = "^6.3.0" }
coverage = "^7.3.0"
flask = "^2.2.3"
pre-commit = "^3.3.3"
pytest = "^7.4.3"
[tool.poetry.urls]
issues = "https://github.com/codectl/apispec-ui/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"