-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (76 loc) · 2.22 KB
/
pyproject.toml
File metadata and controls
83 lines (76 loc) · 2.22 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm>=8.1"]
build-backend = "setuptools.build_meta"
[project]
name = "looptime"
description = "Fast-forward asyncio event loop time (in tests)"
keywords = ["asyncio", "event loop", "time", "python", "pytest"]
authors = [{name = "Sergey Vasilyev", email = "nolar@nolar.info"}]
maintainers = [{name = "Sergey Vasilyev", email = "nolar@nolar.info"}]
license = "MIT"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Framework :: Pytest",
"Framework :: aiohttp",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
]
dynamic = ["version"] # taken from git tags
[project.urls]
homepage = "https://github.com/nolar/looptime"
repository = "https://github.com/nolar/looptime"
documentation = "https://github.com/nolar/looptime"
[project.entry-points.pytest11]
looptime_plugin = "looptime._internal.plugin"
looptime_timeproxies = "looptime._internal.timeproxies"
looptime_chronometers = "looptime._internal.chronometers"
[dependency-groups]
docs = [
"sphinx>=9.0.0",
"sphinx-llm>=0.1.4",
"furo",
]
dev = [
"async-timeout",
"codecov",
"coverage",
"coveralls",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-mock",
]
lint = [
{include-group = "dev"},
"mypy==1.19.0",
"pre-commit",
"isort",
]
[tool.setuptools_scm]
version_file = "looptime/_version.py"
[tool.mypy]
warn_unused_configs = true
ignore_missing_imports = true
[tool.isort]
line_length = 120
multi_line_output = 11
balanced_wrapping = true
combine_as_imports = true
case_sensitive = true