beekeeper-ai 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.
@@ -0,0 +1,86 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ #IDE
10
+ .DS_Store
11
+ .idea
12
+ .vscode
13
+
14
+ # Distribution / packaging
15
+ .Python
16
+ build/
17
+ develop-eggs/
18
+ dist/
19
+ downloads/
20
+ eggs/
21
+ .eggs/
22
+ lib/
23
+ lib64/
24
+ parts/
25
+ sdist/
26
+ var/
27
+ wheels/
28
+ share/python-wheels/
29
+ *.egg-info/
30
+ .installed.cfg
31
+ *.egg
32
+ MANIFEST
33
+
34
+ # PyInstaller
35
+ # Usually these files are written by a python script from a template
36
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
37
+ *.manifest
38
+ *.spec
39
+
40
+ # Installer logs
41
+ pip-log.txt
42
+ pip-delete-this-directory.txt
43
+
44
+ # Unit test / coverage reports
45
+ htmlcov/
46
+ .tox/
47
+ .nox/
48
+ .coverage
49
+ .coverage.*
50
+ .cache
51
+ nosetests.xml
52
+ coverage.xml
53
+ *.cover
54
+ *.py,cover
55
+ .hypothesis/
56
+ .pytest_cache/
57
+ cover/
58
+
59
+ # Sphinx documentation
60
+ docs/_build/
61
+ docs/sphinx-pages/
62
+ sphinx-pages/
63
+
64
+ # Ruff
65
+ .ruff_cache/
66
+
67
+ # PyBuilder
68
+ .pybuilder/
69
+ target/
70
+
71
+ # Jupyter Notebook
72
+ .ipynb_checkpoints
73
+
74
+ # pyenv
75
+ # For a library or package, you might want to ignore these files since the code is
76
+ # intended to run in multiple environments; otherwise, check them in:
77
+ # .python-version
78
+
79
+ # Environments
80
+ .env
81
+ .venv
82
+ env/
83
+ venv/
84
+ ENV/
85
+ env.bak/
86
+ venv.bak/
@@ -0,0 +1,7 @@
1
+ Copyright 2025 Leonardo Furnielis
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: beekeeper-ai
3
+ Version: 0.0.1
4
+ Summary: Load any data in one line of code and connect with AI applications
5
+ Project-URL: Repository, https://github.com/leonardofurnielis/beekeeper
6
+ Author-email: Leonardo Furnielis <leonardofurnielis@outlook.com>
7
+ License: MIT
8
+ License-File: LICENSE
9
+ Keywords: AI,LLM,QA,RAG,data,monitor,retrieval,semantic-search
10
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
11
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
12
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
13
+ Requires-Python: <4.0,>=3.10
14
+ Provides-Extra: dev
15
+ Requires-Dist: ruff>=0.11.13; extra == 'dev'
16
+ Provides-Extra: docs
17
+ Requires-Dist: furo>=2024.8.6; extra == 'docs'
18
+ Requires-Dist: sphinx-copybutton>=0.5.2; extra == 'docs'
19
+ Requires-Dist: sphinx-favicon>=1.0.1; extra == 'docs'
20
+ Requires-Dist: sphinx>=8.1.3; extra == 'docs'
21
+ Description-Content-Type: text/markdown
22
+
23
+ [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
24
+ ![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)
25
+
26
+ ## Installation
27
+
28
+ ```bash
29
+ pip install beekeeper-ai
30
+ ```
31
+
32
+ ## 📄 Documentation
33
+
34
+ Please check it out for overview of the interfaces, components, integrations and other resources!
@@ -0,0 +1,12 @@
1
+ [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
2
+ ![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)
3
+
4
+ ## Installation
5
+
6
+ ```bash
7
+ pip install beekeeper-ai
8
+ ```
9
+
10
+ ## 📄 Documentation
11
+
12
+ Please check it out for overview of the interfaces, components, integrations and other resources!
@@ -0,0 +1,122 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "beekeeper-ai"
7
+ version = "0.0.1"
8
+ description = "Load any data in one line of code and connect with AI applications"
9
+ authors = [{ name = "Leonardo Furnielis", email = "leonardofurnielis@outlook.com" }]
10
+ license = { text = "MIT" }
11
+ readme = "README.md"
12
+ requires-python = ">=3.10,<4.0"
13
+ keywords = ["AI", "LLM", "QA", "RAG", "data", "monitor", "retrieval", "semantic-search"]
14
+ classifiers = [
15
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
16
+ "Topic :: Software Development :: Libraries :: Python Modules",
17
+ "Topic :: Software Development :: Libraries :: Application Frameworks",
18
+ ]
19
+ dependencies = []
20
+
21
+ [project.optional-dependencies]
22
+ dev = [
23
+ "ruff>=0.11.13",
24
+ ]
25
+ docs = [
26
+ "furo>=2024.8.6",
27
+ "sphinx>=8.1.3",
28
+ "sphinx-copybutton>=0.5.2",
29
+ "sphinx-favicon>=1.0.1",
30
+ ]
31
+
32
+ [project.urls]
33
+ Repository = "https://github.com/leonardofurnielis/beekeeper"
34
+
35
+ [tool.hatch.build.targets.sdist]
36
+ include = ["_beekeeper/beekeeper"]
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ include = ["_beekeeper/beekeeper"]
40
+
41
+ [tool.hatch.build.targets.wheel.sources]
42
+ "_beekeeper/beekeeper" = "beekeeper"
43
+
44
+ [tool.ruff]
45
+ extend-exclude = ["docs"]
46
+ target-version = "py310"
47
+
48
+ [tool.ruff.lint]
49
+ ignore = ["D417", "COM812", "E501"]
50
+ select = [
51
+ "B009",
52
+ "B010",
53
+ "B011",
54
+ "B013",
55
+ "B014",
56
+ "C4",
57
+ "COM819",
58
+ "D201",
59
+ "D202",
60
+ "D204",
61
+ "D207",
62
+ "D208",
63
+ "D209",
64
+ "D211",
65
+ "D213",
66
+ "D214",
67
+ "D215",
68
+ "D3",
69
+ "D4",
70
+ "E",
71
+ "F504",
72
+ "F541",
73
+ "F632",
74
+ "FLY",
75
+ "G010",
76
+ "I",
77
+ "PERF1",
78
+ "PIE790",
79
+ "PIE794",
80
+ "PIE808",
81
+ "PIE810",
82
+ "PLC0414",
83
+ "PLE2510",
84
+ "PLE2512",
85
+ "PLE2513",
86
+ "PLE2514",
87
+ "PLE2515",
88
+ "PLR1711",
89
+ "PT001",
90
+ "PT003",
91
+ "PT006",
92
+ "PTH201",
93
+ "PYI",
94
+ "Q",
95
+ "RET501",
96
+ "RET502",
97
+ "RET503",
98
+ "RET504",
99
+ "RSE",
100
+ "RUF005",
101
+ "RUF010",
102
+ "RUF015",
103
+ "SIM101",
104
+ "SIM103",
105
+ "SIM109",
106
+ "SIM118",
107
+ "SIM2",
108
+ "SIM300",
109
+ "SIM9",
110
+ "TC005",
111
+ "TD006",
112
+ "TID",
113
+ "TRY201",
114
+ "W",
115
+ ]
116
+
117
+ [tool.ruff.format]
118
+ docstring-code-format = true
119
+ docstring-code-line-length = "dynamic"
120
+
121
+ [tool.ruff.lint.pydocstyle]
122
+ convention = "google"