beekeeper-ai 1.0.0__tar.gz → 1.0.2__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.

@@ -56,10 +56,9 @@ coverage.xml
56
56
  .pytest_cache/
57
57
  cover/
58
58
 
59
- # Sphinx documentation
59
+ # Mkdocs documentation
60
60
  docs/_build/
61
- docs/sphinx-pages/
62
- sphinx-pages/
61
+ docs/api_reference/site/
63
62
 
64
63
  # Ruff
65
64
  .ruff_cache/
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: beekeeper-ai
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: Load any data in one line of code and connect with AI applications
5
- Project-URL: Repository, https://github.com/leonardofurnielis/beekeeper
5
+ Project-URL: Documentation, https://beekeeper-ai.github.io/beekeeper
6
+ Project-URL: Repository, https://github.com/beekeeper-ai/beekeeper
6
7
  Author-email: Leonardo Furnielis <leonardofurnielis@outlook.com>
7
8
  License: Apache-2.0
8
9
  License-File: LICENSE
@@ -11,19 +12,16 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
11
12
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
12
13
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
13
14
  Requires-Python: <4.0,>=3.10
14
- Requires-Dist: beekeeper-core<2.0.0,>=1.0.0
15
- Requires-Dist: beekeeper-embeddings-huggingface<2.0.0,>=1.0.0
15
+ Requires-Dist: beekeeper-core<2.0.0,>=1.0.2
16
+ Requires-Dist: beekeeper-embeddings-huggingface<2.0.0,>=1.0.2
16
17
  Requires-Dist: beekeeper-llms-litellm<2.0.0,>=1.0.0
17
18
  Requires-Dist: beekeeper-readers-file<2.0.0,>=1.0.0
18
19
  Provides-Extra: dev
19
20
  Requires-Dist: ruff>=0.11.13; extra == 'dev'
20
- Provides-Extra: docs
21
- Requires-Dist: furo>=2024.8.6; extra == 'docs'
22
- Requires-Dist: sphinx-copybutton>=0.5.2; extra == 'docs'
23
- Requires-Dist: sphinx-favicon>=1.0.1; extra == 'docs'
24
- Requires-Dist: sphinx>=8.1.3; extra == 'docs'
25
21
  Description-Content-Type: text/markdown
26
22
 
23
+ # 🗂️ Beekeeper 🐝
24
+
27
25
  ![PyPI - Version](https://img.shields.io/pypi/v/beekeeper-ai)
28
26
  [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
29
27
  ![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)
@@ -38,4 +36,6 @@ pip install beekeeper-ai
38
36
 
39
37
  ## 📄 Documentation
40
38
 
39
+ The documentation can be found Click [here](https://beekeeper-ai.github.io/beekeeper/)!
40
+
41
41
  Please check it out for overview of the interfaces, components, integrations and other resources!
@@ -1,3 +1,5 @@
1
+ # 🗂️ Beekeeper 🐝
2
+
1
3
  ![PyPI - Version](https://img.shields.io/pypi/v/beekeeper-ai)
2
4
  [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
3
5
  ![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)
@@ -12,4 +14,6 @@ pip install beekeeper-ai
12
14
 
13
15
  ## 📄 Documentation
14
16
 
17
+ The documentation can be found Click [here](https://beekeeper-ai.github.io/beekeeper/)!
18
+
15
19
  Please check it out for overview of the interfaces, components, integrations and other resources!
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "beekeeper-ai"
7
- version = "1.0.0"
7
+ version = "1.0.2"
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.0,<2.0.0",
21
- "beekeeper-embeddings-huggingface>=1.0.0,<2.0.0",
20
+ "beekeeper-core>=1.0.2,<2.0.0",
21
+ "beekeeper-embeddings-huggingface>=1.0.2,<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,15 +27,10 @@ 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
- Repository = "https://github.com/leonardofurnielis/beekeeper"
32
+ Documentation = "https://beekeeper-ai.github.io/beekeeper"
33
+ Repository = "https://github.com/beekeeper-ai/beekeeper"
39
34
 
40
35
  [tool.hatch.build.targets.sdist]
41
36
  include = ["_beekeeper/beekeeper"]
File without changes