-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
55 lines (47 loc) · 1.16 KB
/
setup.cfg
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
[metadata]
name = pytest-frozen-uuids
version = 0.3.5
description = Deterministically frozen UUID's for your tests
long_description = file:README.md
long_description_content_type = text/markdown
author = Simon Wahlgren
author_email = [email protected]
license = MIT
url = https://github.com/simonwahlgren/pytest-frozen-uuids
classifiers =
Framework :: Pytest
Topic :: Software Development :: Testing
Programming Language :: Python :: 3
[options]
python_requires = >=3.6
packages = find_namespace:
package_dir =
= .
install_requires =
pytest>=3.0
[options.packages.find]
where = .
include = pytest_frozen_uuids
[options.entry_points]
pytest11 =
frozen_uuids = pytest_frozen_uuids.__main__
[flake8]
max-line-length = 100
extended-ignore = W504
exclude = .git,.venv,.eggs,.tox,__pycache__
[coverage:run]
branch = True
source = pytest_frozen_uuids
[tool:pytest]
testpaths = tests
norecursedirs = .venv .git .eggs
addopts = -v
[mypy]
ignore_missing_imports = True
show_error_context = True
files = pytest_frozen_uuids
[tool:isort]
profile = black
line_length = 100
known_tests = tests
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER,TESTS