-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
85 lines (63 loc) · 1.69 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
78
79
80
81
82
83
84
85
[tool.poetry]
name = "pytest-expecter"
version = "3.0"
description = "Better testing with expecter and pytest."
license = "BSD"
authors = ["Jace Browning <[email protected]>"]
readme = "README.md"
homepage = "https://pypi.org/project/pytest-expecter"
documentation = "https://pytest-expecter.readthedocs.io"
repository = "https://github.com/jacebrowning/pytest-expecter"
keywords = ["pytest", "testing"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Testing",
]
packages = [
{ include = "expecter" },
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
# Formatters
black = "19.10b0"
isort = "4.3.21"
# Linters
mypy = "*"
pydocstyle = "*"
pylint = "^2.0"
types-setuptools = "*"
# Testing
pytest = "^6.2.5"
pytest-cov = "*"
pytest-describe = "^1.0"
pytest-random = "*"
freezegun = "*"
# Reports
coveragespace = "^3.1.1"
# Documentation
mkdocs = "^1.2.3"
pygments = "*"
jinja2 = "~3.0.3"
# Tooling
pyinstaller = "*"
sniffer = "*"
MacFSEvents = { version = "*", platform = "darwin" }
pync = { version = "*", platform = "darwin" }
[tool.poetry.plugins.pytest11]
"pytest-expecter" = "expecter.plugin"
[tool.black]
target-version = ["py36", "py37"]
skip-string-normalization = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"