-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.85 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
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "aiomisc-pytest"
license = "MIT"
version = "1.0.8"
description = "pytest integration for aiomisc"
authors = ["Dmitry Orlov <[email protected]>"]
readme = "README.md"
packages = [{include = "aiomisc_pytest.py"}]
keywords=["pytest", "aiomisc"]
classifiers = [
"Environment :: Plugins",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
]
[tool.poetry.dependencies]
python = "^3.8"
pytest = "8.2.0"
aiomisc = ">=17"
[tool.poetry.group.uvloop.dependencies]
uvloop = "^0.19.0"
[tool.poetry.group.dev.dependencies]
pylama = "^8.4.1"
mypy = "^1.0.0"
pytest-cov = "^4.0.0"
setuptools = "^69.5.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins.pytest11]
aiomisc = "aiomisc_pytest"
[tool.poem-plugins.version]
provider = "git"
update_pyproject = true
write_version_file = false
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = false
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
follow_imports = "silent"
no_implicit_reexport = true
strict_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
files = ["aiomisc_pytest.py"]