-
-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.73 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
[project]
name = "aiofiles"
description = "File support for asyncio."
authors = [
{name = "Tin Tvrtkovic", email = "[email protected]"},
]
dependencies = []
requires-python = ">=3.8"
readme = "README.md"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: AsyncIO",
]
dynamic = ["version"]
[project.urls]
Changelog = "https://github.com/Tinche/aiofiles#history"
"Bug Tracker" = "https://github.com/Tinche/aiofiles/issues"
repository = "https://github.com/Tinche/aiofiles"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.coverage.run]
parallel = true
source_pkgs = ["aiofiles"]
[tool.coverage.paths]
source = [
"src",
".tox/*/lib/python*/site-packages",
".tox/pypy*/site-packages",
]
[tool.black]
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
known_first_party = ["aiofiles"]
[tool.pdm.dev-dependencies]
test = [
"pytest>=8.2.2",
"pytest-asyncio>=0.23.7",
"coverage>=6.4.4",
"tox>=3.25.1",
]
lint = [
"black>=22.8.0",
"flake8>=5.0.4",
"isort==5.11.5",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.hatch.version]
source = "vcs"
raw-options = { local_scheme = "no-local-version" }