forked from ipwnponies/pytest-antilru
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
65 lines (60 loc) · 1.8 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
[tool.poetry]
name = "pytest-antilru"
version = "1.1.1"
description = "Bust functools.lru_cache when running pytest to avoid test pollution"
license = "MIT"
authors = ["John Nguyen <ipwnponies@gmail.com>"]
readme = "README.md"
repository = "https://github.com/ipwnponies/pytest-antilru"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
include = [
"CHANGELOG.md"
]
[tool.poetry.dependencies]
python = ">=2.7,<3 || >=3.5"
pytest = "*"
[tool.poetry.dev-dependencies]
black = {version = "^22.6.0", python = "^3.8"}
ipython = {version = "^8.4.0", python = "^3.8"}
pudb = {version = "^2022.1.2", python = "^3.8"}
pylint = {version = "^2.14.5", python = "^3.8"}
tox = {version = "^3.25.1", python = "^3.8"}
pre-commit = {version = "^2.20.0", python = "^3.8"}
tox-poetry = {version = "^0.4.1", python = "^3.8"}
[tool.poetry.plugins."pytest11"]
"antilru" = "pytest_antilru.main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length=120
target-version = ['py38']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.mypy_cache
| \.tox
| venv
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''