-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
120 lines (115 loc) · 2.94 KB
/
Copy pathpyproject.toml
File metadata and controls
120 lines (115 loc) · 2.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[project]
name = "grepctl"
version = "0.3.4"
description = "One-command orchestration for multimodal semantic search in BigQuery"
readme = "README.md"
authors = [
{ name = "Gregory Mulla", email = "gregory.cr.mulla@gmail.com" }
]
maintainers = [
{ name = "Gregory Mulla", email = "gregory.cr.mulla@gmail.com" }
]
license = { text = "MIT" }
requires-python = ">=3.11"
keywords = [
"bigquery",
"semantic-search",
"vector-search",
"multimodal",
"google-cloud",
"machine-learning",
"embeddings",
"gcs",
"vertex-ai",
"document-search",
"rag",
"vector-database",
"retrieval-augmented-generation",
"llm-orchestration",
"multimodal-search",
"document-ai",
"vision-api",
"speech-to-text",
"video-intelligence",
"semantic-similarity",
"text-embeddings",
"hybrid-search",
"knowledge-base",
"data-lake"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Indexing",
]
dependencies = [
"click>=8.2.1",
"google-cloud-aiplatform>=1.113.0",
"google-cloud-bigquery>=3.37.0",
"google-cloud-documentai>=3.6.0",
"google-cloud-speech>=2.33.0",
"google-cloud-videointelligence>=2.16.2",
"google-cloud-vision>=3.10.2",
"google-cloud-storage>=2.10.0",
"pypdf2>=3.0.1",
"pyyaml>=6.0.2",
"rich>=14.1.0",
"tqdm>=4.67.1",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"python-multipart>=0.0.6",
]
[project.urls]
Homepage = "https://github.com/gregorymulla/grepctl"
Documentation = "https://github.com/gregorymulla/grepctl#readme"
Repository = "https://github.com/gregorymulla/grepctl.git"
Issues = "https://github.com/gregorymulla/grepctl/issues"
[project.scripts]
grepctl = "grepctl:main"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"diagrams>=0.24.4",
]
multimedia = [
"imageio>=2.37.0",
"imageio-ffmpeg>=0.6.0",
"matplotlib>=3.10.6",
]
research = [
"arxiv>=2.2.0",
"datasets>=4.0.0",
"tensorflow-datasets>=4.9.9",
"yt-dlp>=2025.9.5",
"graphviz>=0.20.3",
]
server = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"python-multipart>=0.0.6",
"aiofiles>=23.2.1",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"build>=1.3.0",
"diagrams>=0.24.4",
"twine>=6.2.0",
]