documente_shared 0.1.53__tar.gz → 0.1.54__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of documente_shared might be problematic. Click here for more details.
- {documente_shared-0.1.53 → documente_shared-0.1.54}/PKG-INFO +1 -1
- documente_shared-0.1.54/pyproject.toml +38 -0
- documente_shared-0.1.53/pyproject.toml +0 -18
- {documente_shared-0.1.53 → documente_shared-0.1.54}/README.md +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/__init__.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/__init__.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/digest.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/exceptions.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/time_utils.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/timezone.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/__init__.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/base_enum.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/constants.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/entities/__init__.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/entities/document.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/entities/document_metadata.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/enums.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/repositories.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/__init__.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/dynamo_repositories.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/dynamo_table.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/s3_bucket.py +0 -0
- {documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/sqs_queue.py +0 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "documente_shared"
|
|
3
|
+
version = "0.1.54"
|
|
4
|
+
description = "Shared utilities for Documente AI projects"
|
|
5
|
+
authors = ["Tech <tech@llamitai.com>"]
|
|
6
|
+
license = "MIT"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
|
|
9
|
+
[tool.poetry.dependencies]
|
|
10
|
+
python = ">=3.10,<3.13"
|
|
11
|
+
boto3 = "^1.34.80"
|
|
12
|
+
botocore = "^1.34.80"
|
|
13
|
+
sentry-sdk = "^2.19.2"
|
|
14
|
+
|
|
15
|
+
[tool.poetry.dev-dependencies]
|
|
16
|
+
pytest = "^8.3.4"
|
|
17
|
+
ipdb = "^0.13.13"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
[tool.pytest.ini_options]
|
|
21
|
+
norecursedirs = "build dist _darcs {arch} *.egg node_modules */migrations/* */static/* docs *.egg-info .git __pycache__"
|
|
22
|
+
# -s >> no capture warnings
|
|
23
|
+
addopts = "--tb=short --maxfail=100 --strict -s"
|
|
24
|
+
testpaths = "tests"
|
|
25
|
+
python_files = "tests.py test_*.py"
|
|
26
|
+
python_classes = "*Tests"
|
|
27
|
+
python_functions = "test_*"
|
|
28
|
+
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
|
|
29
|
+
console_output_style = "progress"
|
|
30
|
+
filterwarnings = [
|
|
31
|
+
"ignore::DeprecationWarning",
|
|
32
|
+
"ignore::PendingDeprecationWarning"
|
|
33
|
+
]
|
|
34
|
+
markers = [
|
|
35
|
+
"flake8: Run flake8 on all possible template combinations",
|
|
36
|
+
"black: Run black on all possible template combinations",
|
|
37
|
+
"single: Run single test to debug it",
|
|
38
|
+
]
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "documente_shared"
|
|
3
|
-
version = "0.1.53"
|
|
4
|
-
description = "Shared utilities for Documente AI projects"
|
|
5
|
-
authors = ["Tech <tech@llamitai.com>"]
|
|
6
|
-
license = "MIT"
|
|
7
|
-
readme = "README.md"
|
|
8
|
-
|
|
9
|
-
[tool.poetry.dependencies]
|
|
10
|
-
python = ">=3.10,<3.13"
|
|
11
|
-
boto3 = "^1.34.80"
|
|
12
|
-
botocore = "^1.34.80"
|
|
13
|
-
sentry-sdk = "^2.19.2"
|
|
14
|
-
|
|
15
|
-
[tool.poetry.dev-dependencies]
|
|
16
|
-
pytest = "^6.0"
|
|
17
|
-
ipdb = "^0.13.13"
|
|
18
|
-
|
|
File without changes
|
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/exceptions.py
RENAMED
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/time_utils.py
RENAMED
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/application/timezone.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/entities/__init__.py
RENAMED
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/domain/entities/document.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/dynamo_table.py
RENAMED
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/s3_bucket.py
RENAMED
|
File without changes
|
{documente_shared-0.1.53 → documente_shared-0.1.54}/documente_shared/infrastructure/sqs_queue.py
RENAMED
|
File without changes
|