forked from woniesong92/talktosql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (47 loc) · 1.16 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "talktosql"
version = "0.0.1"
authors = [
{ name="woniesong92", email="[email protected]" },
]
description = "Query your DB using natural language instead of SQL queries"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp==3.8.4",
"aiosignal==1.3.1",
"async-timeout==4.0.2",
"attrs==22.2.0",
"certifi==2022.12.7",
"charset-normalizer==3.1.0",
"frozenlist==1.3.3",
"greenlet==2.0.2",
"idna==3.4",
"multidict==6.0.4",
"mysqlclient==2.1.1",
"openai==0.27.2",
"prettytable==3.6.0",
"psycopg2==2.9.5",
"python-dotenv==1.0.0",
"requests==2.28.2",
"SQLAlchemy==2.0.7",
"termcolor==2.2.0",
"tqdm==4.65.0",
"typing_extensions==4.5.0",
"urllib3==1.26.15",
"wcwidth==0.2.6",
"yarl==1.8.2"
]
[project.urls]
"Homepage" = "https://github.com/woniesong92/talktosql"
"Bug Tracker" = "https://github.com/woniesong92/talktosql/issues"
[project.scripts]
talktosql = "talktosql.talktosql:main"