-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
142 lines (134 loc) · 3.15 KB
/
pyproject.toml
File metadata and controls
142 lines (134 loc) · 3.15 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
131
132
133
134
135
136
137
138
139
140
141
142
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs>=0.4",
"hatchling>=1.25",
]
[project]
name = "hope-documents"
description = ""
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = [
"version",
]
dependencies = [
"celery",
"click>=8.3",
"deskew>=1.5.3",
"django<6",
"django-admin-extra-buttons>=2.1.1",
"django-adminactions>=2.4",
"django-adminfilters>=2.6",
"django-constance>=4.3.2",
"django-cors-headers",
"django-csp",
"django-debug-toolbar",
"django-filter",
"django-flags",
"django-regex>=0.5",
"django-smart-env",
"django-streaming>=0.8",
"django-unfold",
"djangorestframework",
"drf-spectacular",
"drf-spectacular-sidecar",
"humanize>=4.14",
"jinja2>=3.1.6",
"matplotlib>=3.10.7",
"opencv-python>=4.12.0.88",
"pillow>=11.3",
"psycopg2-binary",
"pytesseract>=0.3.13",
"pytz",
"regex>=2025.9.18",
"sentry-sdk",
"social-auth-app-django",
"unicef-security",
]
scripts.doc = "hope_documents.ocr.__cli__:cli"
[dependency-groups]
dev = [
"django-browser-reload>=1.19",
"django-smart-env>=1",
"django-webtest>=1.9.13",
"factory-boy>=3.3.3",
"freezegun>=1.5.5",
"pdbpp>=0.11.7",
"pre-commit>=4.3",
"psycopg2-binary",
"pycountry",
"pyquery>=2.0.1",
"pytest>=8.4.2",
"pytest-cov>=7",
"pytest-coverage>=0",
"pytest-django>=4.11.1",
"pytest-echo>=2.0.1",
"pytest-factoryboy>=2.8.1",
"pytest-xdist>=3.8",
"responses>=0.25.8",
"ruff>=0.13.1",
"tox>=4.30.2",
]
docs = [
"markupsafe>=2.1.5",
"mdx-gh-links>=0.4",
"mkdocs>=1.6.1",
"mkdocs-autolinks-plugin>=0.7.1",
"mkdocs-awesome-pages-plugin>=2.10.1",
"mkdocs-click",
"mkdocs-embed-external-markdown>=3.0.2",
"mkdocs-ezglossary-plugin>=1.6.10",
"mkdocs-ezlinks-plugin>=0.1.14",
"mkdocs-gen-files>=0.5",
"mkdocs-get-deps>=0.2",
"mkdocs-include-markdown-plugin>=6.2.2",
"mkdocs-link-marker>=0.1.3",
"mkdocs-macros-plugin>=1.0.5",
"mkdocs-material>=9.5.15",
"mkdocs-minify-plugin>=0.8",
"mkdocs-redirects>=1.2.1",
"mkdocs-simple-hooks>=0.1.5",
"mkdocstrings[python]>=0.27",
"pymdown-extensions>=10.14",
]
type-check = [
"django-stubs[compatible-mypy]",
"mypy",
"types-colorama",
"types-markdown",
"types-pika",
"types-requests",
]
[tool.hatch]
build.hooks.vcs.version-file = "src/hope_documents/version.py"
version.source = "vcs"
raw-options = { root = "../.." }
[tool.hatch.build.targets.sdist]
ignore-vcs = true
include = [
"src/hope_documents/**/*.*",
"src/hope_ocr/**/*.*",
]
[tool.hatch.build.targets.wheel]
packages = [
"src/hope_documents",
"src/hope_ocr",
]
[tool.uv]
default-groups = "all"