-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
85 lines (76 loc) · 2.31 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
[project]
name = "ascetic-ddd"
version = "0.1.7"
description = "Toolkit and seedwork for a python DDD project."
authors = [
{name = "Ivan Zakrevsky",email = "emacsway@gmail.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"python-dateutil (>=2.9.0.post0,<3.0.0)",
"psycopg (>=3.3.2,<4.0.0)",
"psycopg-pool (>=3.3.0,<4.0.0)",
"jsonpath2 (>=0.4.5,<0.5.0)",
"jsonpath-rfc9535 (>=1.0.0,<2.0.0)",
# "python-jsonpath~=2.0.2",
"aiohttp (>=3.13.3,<4.0.0)",
"pydash (>=8.0.5,<9.0.0)",
"dotenv (>=0.9.9,<0.10.0)",
"hypothesis (>=6.150.1,<7.0.0)",
"scipy (>=1.17.0,<2.0.0)",
"mimesis (>=19.1.0,<20.0.0)",
"faker (>=40.1.2,<41.0.0)",
"cryptography (>=46.0.0,<47.0.0)",
"typing_extensions (>=4.4.0)"
]
[project.optional-dependencies]
cli = [
"jinja2 (>=3.1.0,<4.0.0)",
"pyyaml (>=6.0.0,<7.0.0)",
"inflection (>=0.5.1,<0.6.0)",
]
[project.scripts]
ascetic-ddd = "ascetic_ddd.cli.__main__:main"
[dependency-groups]
dev = [
"mypy (>=1.16.0,<2.0.0)",
"types-python-dateutil (>=2.9.0,<3.0.0)",
]
docs = [
"sphinx (>=8.1.0,<9.0.0)",
"sphinx-immaterial (>=0.12.4,<1.0.0)",
"sphinx-autodoc-typehints (>=3.0.0,<4.0.0)",
"sphinx-copybutton (>=0.5.2,<1.0.0)",
"myst-parser (>=4.0.0,<5.0.0)",
]
[tool.poetry]
packages = [{include = "ascetic_ddd"}]
exclude = [
"ascetic_ddd/**/tests",
"ascetic_ddd/**/tests/**",
]
[tool.mypy]
python_version = "3.14"
ignore_missing_imports = true
exclude = ["tests", "_build", "\\.env"]
# Strict flags (enabled incrementally):
warn_redundant_casts = true
extra_checks = true
strict_equality = true
warn_unused_ignores = true
disallow_untyped_decorators = true
no_implicit_reexport = true
check_untyped_defs = true
# disallow_untyped_defs = false # TODO: 505 errors
# disallow_any_generics = false # TODO: 180 errors
# warn_return_any = false # TODO: 43 errors
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/krew-solutions/ascetic-ddd-python"
Repository = "https://github.com/krew-solutions/ascetic-ddd-python"
Documentation = "https://krew-solutions.github.io/ascetic-ddd-python/"
"Bug Tracker" = "https://github.com/krew-solutions/ascetic-ddd-python/issues"