forked from lk-geimfari/mimesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
119 lines (112 loc) · 2.76 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[tool.poetry]
name = "mimesis"
version = "7.0.0"
description = "Mimesis: Fake Data Generator."
authors = ["Isaak Uchakaev <likid.geimfari@gmail.com>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/lk-geimfari/mimesis"
repository = "https://github.com/lk-geimfari/mimesis"
documentation = "https://mimesis.name"
keywords = [
"data",
"datascince",
"database",
"dummy",
"fake",
"faker",
"fixtures",
"generate",
"mimesis",
"mock",
"populate",
"testing"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: MIT License",
]
exclude = [
"mimesis/data/locale_template",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
codecov = "^2.1"
pytest = "^7.1"
pytest-isort = "^3.0.0"
pytest-cov = "^3.0"
pytest-mock = "^3.10"
requests = "^2.28"
mypy = "^0.960"
colorama = "^0.4.5"
pygments = "^2.13"
pytest-randomly = "^3.12"
check-manifest = "^0.48"
readme-renderer = "^36.0"
pytz = "^2022.5"
black = "^22.10.0"
autoflake = "^1.7"
types-pytz = "^2022.4.0"
taskipy = "^1.10.1"
validators = "^0.20.0"
pytest-repeat = "^0.9.1"
memory-profiler = "^0.60.0"
Sphinx = "^5.1.1"
sphinx-copybutton = "^0.5.0"
sphinx-autodoc-typehints = "^1.19.2"
[tool.pytest.ini_options]
addopts = "--isort"
testpaths = [
"mimesis",
"tests",
"minifier.py",
]
[tool.mypy]
files = ["mimesis", "minifier.py"]
strict_optional = true
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
warn_no_return = false
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_return_any = true
strict_equality = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER",
]
default_section = "FIRSTPARTY"
[tool.taskipy.tasks]
minify = "python minifier.py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"