This repository was archived by the owner on Jan 31, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (49 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
67 lines (49 loc) · 1.25 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
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style.toml"
[tool.poetry]
name = "pytest_mimesis"
version = "1.2.0"
description = "Mimesis integration with the pytest test runner"
license = "MIT"
authors = [
"Nikita Sobolev <mail@sobolevn.me>",
"Líkið Geimfari <likid.geimfari@gmail.com>",
"Kevin Schellenberg"
]
readme = "README.md"
repository = "https://github.com/pytest-dev/pytest-mimesis"
homepage = "https://github.com/pytest-dev/pytest-mimesis"
keywords = [
"mimesis",
"pytest",
"testing",
"fixtures",
"fake data",
"faker",
"factory",
"tests"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
]
[tool.poetry.plugins.pytest11]
mimesis = "pytest_mimesis"
[tool.poetry.dependencies]
python = "^3.6"
pytest = ">=4.2"
mimesis = "^4.0"
[tool.poetry.dev-dependencies]
pytest-cov = "^2.12"
pytest-randomly = "^3.8"
nitpick = "^0.26"
wemake-python-styleguide = "^0.15"
flake8-pytest-style = "^1.4"
safety = "^1.10"
mypy = "^0.812"