-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathpyproject.toml
More file actions
131 lines (119 loc) · 3.18 KB
/
pyproject.toml
File metadata and controls
131 lines (119 loc) · 3.18 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
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
119
120
121
122
123
124
125
126
127
128
129
130
[project]
name = "mimesis"
version = "19.1.0"
description = "Mimesis: Fake Data Generator."
authors = [{ name = "Isaak Uchakaev", email = "hey@isaak.dev" }]
requires-python = ">=3.10"
readme = "README.md"
license = "MIT"
keywords = [
"data",
"datascince",
"database",
"dummy",
"fake",
"faker",
"fixtures",
"generate",
"mimesis",
"mock",
"schema",
"dataframe",
"populate",
"testing",
"pandas",
"polars",
"pytest",
"factory",
"factory_boy",
]
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"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",
]
dependencies = []
[project.optional-dependencies]
factory = ["factory-boy>=3.3.0,<4"]
[project.urls]
Homepage = "https://github.com/lk-geimfari/mimesis"
Repository = "https://github.com/lk-geimfari/mimesis"
Documentation = "https://mimesis.name"
[project.entry-points."pytest_randomly.random_seeder"]
mimesis = "mimesis.entrypoints:pytest_randomly_reseed"
[dependency-groups]
dev = [
"pytest~=7.2",
"pytest-mock~=3.10",
"requests~=2.28",
"mypy~=1.1",
"colorama>=0.4.6,<0.5",
"pygments~=2.13",
"pytest-randomly~=3.12",
"pytz~=2023.3",
"black>=22.10,<24.0",
"autoflake~=2.0",
"types-pytz~=2023.3",
"taskipy>=1.10.1,<2",
"validators>=0.20.0,<0.21",
"pytest-repeat>=0.9.1,<0.10",
"coverage>=7.2.3,<8",
"pytest-cov>=4.0.0,<5",
"Sphinx>=5.1.1,<8.0.0",
"sphinx-copybutton>=0.5.0,<0.6",
"sphinx-autodoc-typehints>=1.19.2,<2",
"pytest-factoryboy>=2.6.0,<3",
"isort>=6.0.1",
"twine>=6.1.0",
]
[tool.hatch.build.targets.sdist]
exclude = ["mimesis/datasets/locale_template"]
[tool.hatch.build.targets.wheel]
exclude = ["mimesis/datasets/locale_template"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = [
"mimesis",
"tests",
"minifier.py",
]
[tool.mypy]
exclude = ["tests", "docs"]
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]
profile = "wemake"
[tool.taskipy.tasks]
minify = "python tasks/minifier.py"