-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
52 lines (47 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
[tool.poetry]
name = "aiorwlock"
version = "1.5.0"
description = "Read write lock for asyncio."
authors = ["Nikolay Novik <nickolainovik@gmail.com>"]
license = "Apache-2.0"
homepage = "https://github.com/aio-libs/aiorwlock"
repository = "https://github.com/aio-libs/aiorwlock"
documentation = "https://github.com/aio-libs/aiorwlock"
keywords = ["aiorwlock", "lock", "asyncio"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
]
[tool.poetry.dependencies]
python = ">=3.9"
[tool.poetry.dev-dependencies]
bandit = "1.8.0"
black = "24.10.0"
flake8-bugbear = "24.12.12"
flake8 = "7.1.1"
isort = "5.13.2"
mypy = "1.14.0"
pyroma = "4.2"
pytest-asyncio = "0.25.0"
pytest-cov = "6.0.0"
pytest = "8.3.4"
coverage = "^7.6.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = ["error"]
testpaths = ["tests"]
asyncio_mode = "strict"
[tool.mypy]
[tool.mypy-pytest]
ignore_missing_imports = true