forked from lk-geimfari/mimesis-factory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (41 loc) · 1.03 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
[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-wemake.toml"
[tool.poetry]
name = "mimesis_factory"
version = "1.1.0"
description = "Mimesis integration with factory_boy"
license = "MIT"
authors = [
"Nikita Sobolev <mail@sobolevn.me>",
"Líkið Geimfari <likid.geimfari@gmail.com>"
]
readme = 'README.md'
repository = "https://github.com/mimesis-lab/mimesis-factory"
homepage = "https://github.com/mimesis-lab/mimesis-factory"
keywords = [
"mimesis",
"factory_boy",
"testing",
"fixtures",
"fake data",
"fabric",
"factory"
]
[tool.poetry.dependencies]
python = "^3.6"
factory-boy = ">=2.11,<4.0"
mimesis = "^4.0"
[tool.poetry.dev-dependencies]
pytest-cov = "^2.10"
pytest-factoryboy = "^2.0"
pytest-randomly = "^3.4"
pytest = "^6.0"
wemake-python-styleguide = "^0.14"
flake8-pytest-style = "^1.3"
nitpick = "^0.22"
validators = "^0.18"
mypy = "^0.782"
safety = "^1.9"