-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.26 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
51
52
53
54
55
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "precinct"
version = "0.1.4"
description = "Your SQL query AI copilot"
authors = [
{name = "[email protected]", email = "[email protected]"}
]
license = {file = "LICENSE"}
dependencies = [
"psycopg2 ~= 2.9",
"types-psycopg2 ~= 2.9",
"click ~= 8.1",
"openai ~= 0.28",
"pydantic ~= 2.4",
"sqlparse ~= 0.4",
"instructor ~= 0.2",
"pyperclip ~= 1.8",
"cachetools ~= 5.3.2",
"pyyaml ~= 6.0",
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Utilities",
]
[project.urls]
"Homepage" = "https://github.com/msnidal/precinct"
[tool.setuptools]
packages = ["precinct"]
[project.optional-dependencies]
dev = [
"black ~= 23.10.0",
"isort ~= 5.12.0",
"pytest ~= 7.1",
"pytest-cov ~= 3.0",
]
[project.scripts]
precinct = "precinct.main:main"