We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 628bb61 commit 95963ebCopy full SHA for 95963eb
pyproject.toml
@@ -2,7 +2,7 @@
2
name = "ragstack-ai"
3
version = "0.2.0.post"
4
description = "RAGStack"
5
-license = ""
+license = "BUSL-1.1"
6
authors = ["DataStax"]
7
readme = "README.md"
8
packages = [
tests/unit-tests/test_ragstack.py
@@ -9,3 +9,9 @@ def test_import():
9
import unstructured # noqa
10
import openai # noqa
11
import tiktoken # noqa
12
+
13
+def test_meta():
14
+ from importlib import metadata
15
+ meta = metadata.metadata("ragstack-ai")
16
+ assert meta["version"]
17
+ assert meta["license"] == "BUSL-1.1"
0 commit comments