-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.53 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
[tool.poetry]
name = "sanic-openapi-ext"
version = "0.1.0"
description = "Sanic OpenAPI extension offers an enhanced and convenient way to generate OpenAPI (Swagger) documentation from Marshmallow schemas"
authors = ["Yurii Havrylko <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://pypi.org/project/sanic-openapi-ext/"
repository = "https://github.com/yuriihavrylko/sanic_openapi_ext"
documentation = "https://github.com/yuriihavrylko/sanic_openapi_ext/blob/master/README.md"
keywords = ["python", "sanic", "swagger", "marshmallow", "open-api", "sanic-ext"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
packages = [
{include = "sanic_openapi_ext"},
]
include = ["CHANGELOG.md"]
[tool.bandit.assert_used]
skips = ["*/*_test.py", "*/test_*.py"]
[tool.poetry.dependencies]
python = "^3.8"
sanic-ext = "^23.12.0"
marshmallow = "^3.20.2"
[tool.poetry.group.dev.dependencies]
sanic = "^23.12.1"
pre-commit = "^3.5.0"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"