documente_shared 0.1.53b0__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.

Files changed (23) hide show
  1. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/PKG-INFO +1 -1
  2. documente_shared-0.1.54/pyproject.toml +38 -0
  3. documente_shared-0.1.53b0/pyproject.toml +0 -18
  4. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/README.md +0 -0
  5. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/__init__.py +0 -0
  6. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/application/__init__.py +0 -0
  7. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/application/digest.py +0 -0
  8. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/application/exceptions.py +0 -0
  9. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/application/time_utils.py +0 -0
  10. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/application/timezone.py +0 -0
  11. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/domain/__init__.py +0 -0
  12. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/domain/base_enum.py +0 -0
  13. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/domain/constants.py +0 -0
  14. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/domain/entities/__init__.py +0 -0
  15. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/domain/entities/document.py +0 -0
  16. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/domain/entities/document_metadata.py +0 -0
  17. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/domain/enums.py +0 -0
  18. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/domain/repositories.py +0 -0
  19. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/infrastructure/__init__.py +0 -0
  20. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/infrastructure/dynamo_repositories.py +0 -0
  21. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/infrastructure/dynamo_table.py +0 -0
  22. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/infrastructure/s3_bucket.py +0 -0
  23. {documente_shared-0.1.53b0 → documente_shared-0.1.54}/documente_shared/infrastructure/sqs_queue.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: documente_shared
3
- Version: 0.1.53b0
3
+ Version: 0.1.54
4
4
  Summary: Shared utilities for Documente AI projects
5
5
  License: MIT
6
6
  Author: Tech
@@ -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-beta"
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
-