-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (70 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
84 lines (70 loc) · 2.15 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
84
[build-system]
requires = ["setuptools>=64", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-verify"
version = "1.2.0"
description = "A pytest plugin for snapshot verification with optional visual diff viewer."
authors = [
{ name = "Mohamed Tahri", email = "simotahri1@gmail.com" }
]
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { file = "LICENSE" }
dependencies = [
"click>=8.0",
"rich>=13.0",
"PyYAML>=6.0",
"dictlens",
"xmllens"
]
keywords = ["pytest", "snapshot", "testing", "verify", "diff", "viewer"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License"
]
[project.urls]
Homepage = "https://github.com/metahris/pytest-verify"
Repository = "https://github.com/metahris/pytest-verify"
Stars = "https://github.com/metahris/pytest-verify/stargazers"
Forks = "https://github.com/metahris/pytest-verify/network/members"
Documentation = "https://github.com/metahris/pytest-verify#readme"
Issues = "https://github.com/metahris/pytest-verify/issues"
Changelog = "https://github.com/metahris/pytest-verify/releases"
DiffViewer = "https://github.com/metahris/pytest-verify/tree/master/verify-diff-viewer"
[project.entry-points."pytest11"]
pytest_verify = "pytest_verify.plugin"
[tool.setuptools]
packages = ["pytest_verify"]
[tool.setuptools.package-data]
pytest_verify = ["py.typed"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["tests"]
asyncio_mode = "auto"
[project.optional-dependencies]
pydantic = ["pydantic>=2.0,<3.0"]
numpy = ["numpy>=1.24"]
pandas = ["pandas>=2.0"]
data = [
"pandas>=2.0",
"numpy>=1.24",
"pydantic>=2.0"
]
# async support
async = [
"pytest-asyncio>=0.23",
]
all = [
"pydantic>=2.0,<3.0",
"numpy>=1.24",
"pandas>=2.0",
"pytest-asyncio>=0.23"
]