-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.18 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
[tool.poetry]
name = "chocs_middleware.openapi"
version = "1.2.4"
description = "Middleware to validate incoming requests with openapi spec."
authors = [
"Dawid Kraczkowski <dawid.kraczkowski@gmail.com>"
]
license = "MIT"
readme = "README.md"
packages = [
{ include = "chocs_middleware" }
]
homepage = "https://github.com/kodemore/chocs-openapi"
repository = "https://github.com/kodemore/chocs-openapi"
documentation = "https://github.com/kodemore/chocs-openapi"
keywords = ["openapi", "json-schema", "chocs", "http", "middleware"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
# Requirements
[tool.poetry.dependencies]
python = "^3.8"
chocs = "^1.6.1"
opyapi = "^1.3.3"
[tool.poetry.dev-dependencies]
pytest = "^4.1.0"
pytest-cov = "^2.5"
pytest-mock = "^1.9"
black = "^22.10.0"
isort = "^5.6.4"
mypy = "^0.812"
pylint = "^2.15.5"