-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
77 lines (69 loc) · 2.04 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = false
[project]
name = "pytest-monitor"
authors = [
{name = "Jean-Sébastien Dieu", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pytest",
"requests",
"psutil>=5.1.0",
"memory_profiler>=0.58",
"wheel",
]
description = "A pytest plugin designed for analyzing resource usage during tests."
license = {text = "MIT"}
maintainers = [
{name = "Jean-Sébastien Dieu", email = "[email protected]"},
]
readme = "README.rst"
requires-python = ">=3.8"
version = "1.7.0"
[project.urls]
"Source" = "https://github.com/CFMTech/pytest-monitor"
"Tracker" = "https://github.com/CFMTech/pytest-monitor/issues"
"Documentation" = "https://pytest-monitor.readthedocs.io/"
"Homepage" = "https://pytest-monitor.readthedocs.io/"
[project.entry-points.pytest11]
monitor = "pytest_monitor.pytest_monitor"
[project.optional-dependencies]
dev = [
"black",
"isort",
"flake8==6.0.0",
"flake8-builtins==2.1.0",
"flake8-simplify==0.19.3",
"flake8-comprehensions==3.10.1",
"flake8-pytest-style==1.6.0",
"flake8-return==1.2.0",
"flake8-simplify==0.19.3",
"flake8-pyproject==1.2.3",
"pre-commit==3.3.3"
]
[tool.flake8]
max-line-length = 120
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
src_paths = ["pytest_monitor"]