-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.32 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
[tool.poetry]
name = "aiohttp-validator"
version = "0.2.0"
description = "aiohttp simple pydantic validator"
authors = ["Dmitry Pershin <dapper1291@gmail.com>"]
license = "Unlicense"
readme = "README.md"
homepage = "https://github.com/dapper91/aiohttp-validator"
repository = "https://github.com/dapper91/aiohttp-validator"
keywords = ["aiohttp", "pydantic", "validation", "http", "asyncio"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Framework :: AsyncIO",
'Framework :: Pydantic',
'Framework :: Pydantic :: 2',
]
[tool.poetry.dependencies]
python = ">=3.9"
aiohttp = ">=3.7.0"
pydantic = ">=2.0"
[tool.poetry.dev-dependencies]
pre-commit = "^3.1.0"
mypy = "^1.0.1"
pytest = "^7.2.1"
pytest-aiohttp = "^1.0.4"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
allow_redefinition = true
disallow_incomplete_defs = true
disallow_any_generics = true
disallow_untyped_decorators = false
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_unused_ignores = true