-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "weavscope"
version = "0.1.1"
license = { text = "MIT" }
description = "A clean, multi-tenant Weaviate wrapper for isolated data management."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
authors = [
{ name = "Tahcin Ul Karim (Mycin)", email = "mycin.mit@gmail.com" }
]
keywords = ["weaviate", "vector-database", "multi-tenancy", "search"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"weaviate-client[agents]>=4.20.4",
]
[project.optional-dependencies]
test = [
"pytest>=9.0.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["weavscope"]
[dependency-groups]
dev = [
"build>=1.4.2",
"twine>=6.2.0",
]
[tool.hatch.build]
exclude = [
"/tests",
"/docs",
"/assets",
"/mcp",
"*.lock",
"*.txt"
]
[project.urls]
Homepage = "https://github.com/mmycin/weavscope"
Repository = "https://github.com/mmycin/weavscope"
Issues = "https://github.com/mmycin/weavscope/issues"