-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
90 lines (82 loc) · 1.81 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
[project]
name = "hope-flex-fields"
version = "0.5.0"
description = ""
authors = [
{name = "sax", email = "[email protected]"},
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"django-strategy-field>=3.1.0",
"django-regex>=0.5.0",
"django-regex-field>=3.1.0",
"django-admin-extra-buttons>=1.6.0",
"django-jsoneditor>=0.2.4",
"djangorestframework>=3.15.1",
"mini-racer>=0.12.4",
"jsonpickle>=3.2.2",
"xlsxwriter>=3.2.0",
"django-adminactions>=2.3.0",
"requests>=2.32.3",
"responses>=0.25.3",
"jmespath>=1.0.1",
"deepdiff>=8.0.1",
"python-calamine>=0.2.3",
]
[project.optional-dependencies]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.36",
"mkdocs-awesome-pages-plugin>=2.9.3",
"mkdocstrings-python",
]
[tool.uv]
dev-dependencies = [
"bandit>=1.7.9",
"black>=24.4.2",
"bump2version>=1.0.1",
"django-csp>=3.8",
"django-factory-boy>=1.0.0",
"django-webtest>=1.9.11",
"django>=3",
"flake8-html>=0.4.3",
"flake8>=7.1.0",
"freezegun>=1.5.1",
"isort>=5.13.2",
"mypy>=1.10.1",
"pdbpp>=0.10.3",
"pre-commit>=3.7.1",
"pytest-cov>=5.0.0",
"pytest-django>=4.8.0",
"pytest>=8.2.2",
"responses>=0.25.3",
"tox>=4.16.0",
]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.pytest_cache
| \.tox
| \.venv
| ~build
| build
| ops
| migrations
)/
'''
[tool.isort]
profile = "black"
line_length = 88
default_section = "THIRDPARTY"
known_first_party = []
known_django = "django"
sections = ["FUTURE","STDLIB","DJANGO","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]
include_trailing_comma = true
skip = ["migrations", "snapshots", ".venv"]
[tool.django-stubs]
django_settings_module = "hope_dedup_engine.config.settings"