-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1013 Bytes
/
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
[tool.poetry]
name = "snapshottest"
version = "0.7.0+thelabnyc"
description = "Snapshot testing for pytest, unittest, Django, and Nose"
authors = ["thelab <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://gitlab.com/thelabnyc/snapshottest"
repository = "https://gitlab.com/thelabnyc/snapshottest"
documentation = "https://gitlab.com/thelabnyc/snapshottest"
packages = [
{ include = "snapshottest" },
]
[tool.poetry.plugins]
[tool.poetry.plugins.pytest11]
snapshottest = "snapshottest.pytest"
[tool.poetry.dependencies]
python = "^3.10"
termcolor = "*"
fastdiff = ">=0.3.0,<1"
pytest = { version = ">=8.3.4", optional = true }
nose2 = { version = "*", optional = true }
[tool.poetry.extras]
pytest = ["pytest"]
nose2 = ["nose2"]
[tool.poetry.group.dev.dependencies]
tox = "^4.24.1"
pytest = ">=8.3.4"
pytest-cov = "*"
nose2 = "*"
django = ">=4.2"
flake8 = "^7.1.1"
black = "^25.1.0"
[build-system]
requires = ["poetry-core>=2.1.0"]
build-backend = "poetry.core.masonry.api"