-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
64 lines (58 loc) · 1.67 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
[tool.poetry]
name = "types-factory-boy"
version = "0.4.1"
description = "Typing stubs for factory-boy"
license = "MIT"
authors = ["Alessio Bogon <[email protected]>"]
readme = "README.md"
repository = "https://github.com/youtux/types-factory-boy"
packages = [{ include = "factory-stubs", from="src" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Stubs Only",
]
[tool.poetry.dependencies]
python = ">=3.9"
factory-boy = ">=3.2.0"
typing-extensions = "^4.2.0"
[tool.poetry.group.dev.dependencies]
mypy = "*"
SQLAlchemy = ">=1.4.36,<3.0.0"
Django = "*"
mongoengine = ">=0.24.1,<0.28.0"
MonkeyType = ">=22.2,<24.0"
tox = {version = "^4.4.7", python = "<4.0"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
[tool.isort]
profile = 'black'
[tool.mypy]
allow_redefinition = false
check_untyped_defs = true
disallow_untyped_decorators = true
disallow_any_explicit = false
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
implicit_reexport = false
strict_optional = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
warn_no_return = true
warn_return_any = true
pretty = true
show_error_codes = true