-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
84 lines (78 loc) · 1.94 KB
/
setup.cfg
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
[metadata]
name = dbally
# do not change version by hand, is will be automatically updated during the release action
version = attr: dbally.__version__.__version__
description = "Efficient, consistent and secure library for querying structured data with natural language"
long_description = file: README.md
long_description_content_type = text/markdown
author = deepsense.ai
author_email = [email protected]
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
project_urls =
Documentation = https://db-ally.deepsense.ai/
Source = https://github.com/deepsense-ai/db-ally
[options]
package_dir =
=src
packages = find:
zip_safe = False
platforms = any
include_package_data = True
python_requires = >=3.8
install_requires =
pandas~=2.0.3
python-dotenv>=0.5.1
SQLAlchemy==2.0.25
tabulate>=0.9.0
click~=8.1.7
numpy>=1.24.0
opentelemetry-api>=1.0.0
[options.extras_require]
litellm =
litellm>=1.37.9
faiss =
faiss-cpu>=1.8.0
chromadb =
chromadb~=0.4.24
tenacity~=8.3.0
langsmith=
langsmith~=0.1.57
elasticsearch =
elasticsearch~=8.13.1
gradio =
gradio~=4.31.5
gradio_client~=0.16.4
local =
accelerate~=0.31.0
torch~=2.2.1
transformers~=4.41.2
dev =
datasets~=2.20.0
dspy-ai~=2.4.13
hydra-core~=1.3.2
neptune~=1.6.3
pydantic~=2.6.0
pydantic_settings~=2.1.0
psycopg2-binary~=2.9.9
[options.packages.find]
where = src
[bdist_wheel]
universal = 1
[aliases]
# Alias `setup.py test` to `setup.py pytest`
test = pytest
[options.entry_points]
console_scripts =
dbally = dbally_cli.main:cli