docetl 0.1.0__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.
docetl-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: docetl
3
+ Version: 0.1.0
4
+ Summary: ETL for documents.
5
+ License: MIT
6
+ Author: Shreya Shankar
7
+ Author-email: shreyashankar@berkeley.edu
8
+ Requires-Python: >=3.9,<4.0
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Description-Content-Type: text/markdown
16
+
17
+ # docetl
18
+
docetl-0.1.0/README.md ADDED
@@ -0,0 +1 @@
1
+ # docetl
File without changes
@@ -0,0 +1,15 @@
1
+ [tool.poetry]
2
+ name = "docetl"
3
+ version = "0.1.0"
4
+ description = "ETL for documents."
5
+ authors = ["Shreya Shankar <shreyashankar@berkeley.edu>"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.9"
11
+
12
+
13
+ [build-system]
14
+ requires = ["poetry-core"]
15
+ build-backend = "poetry.core.masonry.api"