-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.61 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
# looker-langchain-sql-agent/pyproject.toml
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "langchain-looker-agent"
version = "0.1.5"
authors = [
{ name="Mark Rittman", email="mark.rittman@rittmananalytics.com" },
]
description = "A LangChain SQL agent for querying Looker via its Open SQL Interface (JDBC/Avatica)."
readme = "README.md"
requires-python = ">=3.8"
license = { text="Apache-2.0" } #
keywords = ["langchain", "looker", "sql", "agent", "llm", "conversational bi", "jdbc", "avatica"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"langchain-core>=0.1.52",
"langchain-community>=0.0.38",
"langchain>=0.1.20",
"jaydebeapi>=1.2.3",
"JPype1>=1.4.0",
# Note: langchain-openai is not a direct dependency of the library itself,
# but of the example notebooks.
]
[project.urls]
Homepage = "https://github.com/rittmananalytics/langchain-looker-sql-agent"
Repository = "https://github.com/rittmananalytics/langchain-looker-sql-agent.git"
Issues = "https://github.com/rittmananalytics/langchain-looker-sql-agent/issues"