-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1020 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1020 Bytes
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
[project]
name = "contextkit"
version = "0.1.0"
description = "Content-addressed context packs for LLM data analysis (MVP)"
readme = "README.md"
requires-python = ">=3.11"
authors = [{name="Your Name", email="you@example.com"}]
dependencies = [
"typer>=0.12.3",
"rich>=13.7.1",
"pydantic>=2.8.2",
"blake3>=0.4.1",
"ruamel.yaml>=0.18.6",
"markdown-it-py>=3.0.0",
"sqlite-utils>=3.37",
"sentence-transformers>=3.0.1",
"numpy>=1.26.4",
"pandas>=2.2.2",
"psycopg[binary]>=3.2.1",
"python-dotenv>=1.0.1",
"tiktoken>=0.7.0",
"orjson>=3.10.7",
"scikit-learn>=1.0.0",
"openai>=1.0.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"python-multipart>=0.0.20"
]
[project.scripts]
ctx = "contextkit.cli:app"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["contextkit*"]
[tool.uv]
# If you use uv, this section is harmless; otherwise ignore.