-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (66 loc) · 1.81 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatchling.packages.find]
where = ["."]
include = ["chuck_data*"]
[tool.hatchling.metadata]
allow-direct-references = true
license-files = []
[project]
name = "chuck-data"
version = "0.5.0"
description = "Command line AI for customer data"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
keywords = ["agents", "databricks", "ai", "llm", "customer data"]
authors = [
{ name = "John Rush", email = "john.rush@amperity.com" },
{ name = "Caleb Benningfield", email = "noodles@amperity.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Build Tools"
]
dependencies = [
"boto3>=1.28.0",
"databricks-sdk>=0.50.0",
"jsonschema>=4.23.0",
"openai>=1.76.0",
"prettytable>=3.12.0",
"prompt-toolkit>=3.0.50",
"pydantic>=2.11.3",
"readchar>=4.2.1",
"requests>=2.32.3",
"snowflake-connector-python>=3.0.0",
"textual>=0.40.0",
]
[project.scripts]
chuck = "chuck_data.__main__:main"
[project.optional-dependencies]
dev = [
"black",
"ruff",
"pexpect",
"pyright",
"pytest",
"pytest-cov",
]
[project.urls]
Homepage = "https://github.com/amperity/chuck-data"
Repository = "https://github.com/amperity/chuck-data"
[tool.black]
line-length = 88
[tool.ruff]
line-length = 88
exclude = ["**/assets/stitch_notebook_template.ipynb", "*.ipynb"]
[tool.pyright]
typeCheckingMode = "basic"