beekeeper-ai 1.0.1__tar.gz → 1.0.3__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 beekeeper-ai might be problematic. Click here for more details.
- {beekeeper_ai-1.0.1 → beekeeper_ai-1.0.3}/.gitignore +2 -3
- {beekeeper_ai-1.0.1 → beekeeper_ai-1.0.3}/PKG-INFO +3 -8
- {beekeeper_ai-1.0.1 → beekeeper_ai-1.0.3}/pyproject.toml +3 -9
- {beekeeper_ai-1.0.1 → beekeeper_ai-1.0.3}/LICENSE +0 -0
- {beekeeper_ai-1.0.1 → beekeeper_ai-1.0.3}/README.md +0 -0
- {beekeeper_ai-1.0.1 → beekeeper_ai-1.0.3}/_beekeeper/beekeeper/_bundle/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: beekeeper-ai
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Load any data in one line of code and connect with AI applications
|
|
5
5
|
Project-URL: Documentation, https://beekeeper-ai.github.io/beekeeper
|
|
6
6
|
Project-URL: Repository, https://github.com/beekeeper-ai/beekeeper
|
|
@@ -12,17 +12,12 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
12
12
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
13
13
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
14
|
Requires-Python: <4.0,>=3.10
|
|
15
|
-
Requires-Dist: beekeeper-core<2.0.0,>=1.0.
|
|
16
|
-
Requires-Dist: beekeeper-embeddings-huggingface<2.0.0,>=1.0.
|
|
15
|
+
Requires-Dist: beekeeper-core<2.0.0,>=1.0.3
|
|
16
|
+
Requires-Dist: beekeeper-embeddings-huggingface<2.0.0,>=1.0.3
|
|
17
17
|
Requires-Dist: beekeeper-llms-litellm<2.0.0,>=1.0.0
|
|
18
18
|
Requires-Dist: beekeeper-readers-file<2.0.0,>=1.0.0
|
|
19
19
|
Provides-Extra: dev
|
|
20
20
|
Requires-Dist: ruff>=0.11.13; extra == 'dev'
|
|
21
|
-
Provides-Extra: docs
|
|
22
|
-
Requires-Dist: furo>=2024.8.6; extra == 'docs'
|
|
23
|
-
Requires-Dist: sphinx-copybutton>=0.5.2; extra == 'docs'
|
|
24
|
-
Requires-Dist: sphinx-favicon>=1.0.1; extra == 'docs'
|
|
25
|
-
Requires-Dist: sphinx>=8.1.3; extra == 'docs'
|
|
26
21
|
Description-Content-Type: text/markdown
|
|
27
22
|
|
|
28
23
|
# 🗂️ Beekeeper 🐝
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "beekeeper-ai"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.3"
|
|
8
8
|
description = "Load any data in one line of code and connect with AI applications"
|
|
9
9
|
authors = [{ name = "Leonardo Furnielis", email = "leonardofurnielis@outlook.com" }]
|
|
10
10
|
license = { text = "Apache-2.0" }
|
|
@@ -17,8 +17,8 @@ classifiers = [
|
|
|
17
17
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
18
18
|
]
|
|
19
19
|
dependencies = [
|
|
20
|
-
"beekeeper-core>=1.0.
|
|
21
|
-
"beekeeper-embeddings-huggingface>=1.0.
|
|
20
|
+
"beekeeper-core>=1.0.3,<2.0.0",
|
|
21
|
+
"beekeeper-embeddings-huggingface>=1.0.3,<2.0.0",
|
|
22
22
|
"beekeeper-llms-litellm>=1.0.0,<2.0.0",
|
|
23
23
|
"beekeeper-readers-file>=1.0.0,<2.0.0",
|
|
24
24
|
]
|
|
@@ -27,12 +27,6 @@ dependencies = [
|
|
|
27
27
|
dev = [
|
|
28
28
|
"ruff>=0.11.13",
|
|
29
29
|
]
|
|
30
|
-
docs = [
|
|
31
|
-
"furo>=2024.8.6",
|
|
32
|
-
"sphinx>=8.1.3",
|
|
33
|
-
"sphinx-copybutton>=0.5.2",
|
|
34
|
-
"sphinx-favicon>=1.0.1",
|
|
35
|
-
]
|
|
36
30
|
|
|
37
31
|
[project.urls]
|
|
38
32
|
Documentation = "https://beekeeper-ai.github.io/beekeeper"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|