-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
89 lines (81 loc) · 2.37 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "aiofile"
version = "3.9.0"
description = "Asynchronous file operations."
license = "Apache-2.0"
authors = ["Dmitry Orlov <[email protected]>"]
readme = "README.md"
homepage = "http://github.com/mosquito/aiofile"
keywords = ["aio", "python", "asyncio", "fileio", "io"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Natural Language :: Russian",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: System",
"Topic :: System :: Operating System",
]
packages = [
{ include = "aiofile" },
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
caio = "~0.9.0"
[tool.poetry.group.dev.dependencies]
markdown-pytest = "^0.3.2"
pytest = ">=8.2.0,<8.3.0"
aiomisc-pytest = "^1.2.1"
pytest-cov = "^5.0.0"
coveralls = "<4"
pylama = "^8.4.1"
setuptools = "^75.1.0"
mypy = "^1.11.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[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 = [
"aiofile",
"tests",
]
[[tool.mypy.overrides]]
module = ["tests.*"]
check_untyped_defs = true
disallow_incomplete_defs = false
disallow_untyped_calls = false
disallow_untyped_decorators = false
disallow_untyped_defs = false
warn_unused_ignores = false
[tool.pylama]
skip = ["*env*", ".*", "*build*"]
[tool.pylama.pycodestyle]
max_line_length = 80