vibefilter 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.
- vibefilter-0.0.1/LICENSE +21 -0
- vibefilter-0.0.1/PKG-INFO +27 -0
- vibefilter-0.0.1/README.md +10 -0
- vibefilter-0.0.1/pyproject.toml +24 -0
- vibefilter-0.0.1/src/vibefilter/__init__.py +6 -0
vibefilter-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 András Horváth
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: vibefilter
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Filter your tables by vibe: natural-language filters powered by typed AI decisions.
|
|
5
|
+
Project-URL: Homepage, https://vibefilter.dev
|
|
6
|
+
Project-URL: Source, https://github.com/vibefilter
|
|
7
|
+
Author-email: András Horváth <vibefilter@andrashorvath.dev>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: ai,filter,jev,natural-language,typed-decisions
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Vibefilter
|
|
19
|
+
|
|
20
|
+
Filter your tables by vibe: natural-language filters powered by typed AI decisions.
|
|
21
|
+
|
|
22
|
+
This is the Python home of the Vibefilter project. The first release is the
|
|
23
|
+
[Filament plugin](https://github.com/vibefilter/filament) for Laravel; the Python
|
|
24
|
+
package is in early planning and not usable yet.
|
|
25
|
+
|
|
26
|
+
- Project: https://github.com/vibefilter
|
|
27
|
+
- License: MIT
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Vibefilter
|
|
2
|
+
|
|
3
|
+
Filter your tables by vibe: natural-language filters powered by typed AI decisions.
|
|
4
|
+
|
|
5
|
+
This is the Python home of the Vibefilter project. The first release is the
|
|
6
|
+
[Filament plugin](https://github.com/vibefilter/filament) for Laravel; the Python
|
|
7
|
+
package is in early planning and not usable yet.
|
|
8
|
+
|
|
9
|
+
- Project: https://github.com/vibefilter
|
|
10
|
+
- License: MIT
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vibefilter"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Filter your tables by vibe: natural-language filters powered by typed AI decisions."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
license-files = ["LICENSE"]
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
authors = [{ name = "András Horváth", email = "vibefilter@andrashorvath.dev" }]
|
|
14
|
+
keywords = ["ai", "filter", "jev", "typed-decisions", "natural-language"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Software Development :: Libraries",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://vibefilter.dev"
|
|
24
|
+
Source = "https://github.com/vibefilter"
|