documente_shared 0.0.1__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.

@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.1
2
+ Name: documente_shared
3
+ Version: 0.0.1
4
+ Summary: Shared utilities for Documente AI projects
5
+ License: MIT
6
+ Author: Tech
7
+ Author-email: tech@llamitai.com
8
+ Requires-Python: >=3.10,<3.13
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Requires-Dist: boto3 (>=1.34.102,<2.0.0)
15
+ Requires-Dist: botocore (>=1.34.102,<2.0.0)
16
+ Description-Content-Type: text/markdown
17
+
18
+
19
+ # Documente Shared
20
+
21
+ Utilidades para proyectos Documente AI
22
+
@@ -0,0 +1,4 @@
1
+
2
+ # Documente Shared
3
+
4
+ Utilidades para proyectos Documente AI
File without changes
@@ -0,0 +1,10 @@
1
+ from domain.base_enum import BaseEnum
2
+
3
+
4
+ class DocumentProcessStatus(BaseEnum):
5
+ PENDING = 'PENDING'
6
+ ENQUEUED = 'ENQUEUED'
7
+ PROCESSING = 'PROCESSING'
8
+ COMPLETED = 'COMPLETED'
9
+ FAILED = 'FAILED'
10
+
@@ -0,0 +1,15 @@
1
+ [tool.poetry]
2
+ name = "documente_shared"
3
+ version = "0.0.1"
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.102"
12
+ botocore = "^1.34.102"
13
+
14
+ [tool.poetry.dev-dependencies]
15
+ pytest = "^6.0"