-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
43 lines (38 loc) · 1.1 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jaiqu"
version = "0.0.5"
authors = [
{ name = "Alex Reibman", email = "areibman@gmail.com" },
{ name = "Howard Gil", email = "howardbgil@gmail.com" },
{ name = "Braelyn Boynton", email = "bboynton97@gmail.com" }
]
description = "AI utility to extract data from any JSON and reformat it into a new JSON with repeatable queries."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"jq==1.6.0",
"openai~=1.12.0",
"jsonschema==4.21.1",
"typer==0.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.4",
"flake8>=3.1.0",
"coverage[toml]>=7.4.0",
]
[project.urls]
Homepage = "https://github.com/AgentOps-AI/Jaiqu"
Issues = "https://github.com/AgentOps-AI/Jaiqu/issues"
[project.entry-points.console_scripts]
jaiqu = "jaiqu.cli:main"
[tool.setuptools]
packages = { find = { where = ["."], exclude = ["samples"] } }