-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 869 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (33 loc) · 869 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aicontextator"
version = "0.1.8"
description = "A smart CLI tool that bundles project files into a single, LLM-ready context string. It respects .gitignore, counts tokens, and handles large projects by splitting the output."
authors = [
{ name = "David Galet", email = "davidgalet@gmail.com" },
]
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"click>=8.0",
"detect-secrets>=1.5.0",
"pathspec>=0.12",
"pyperclip>=1.9.0",
"questionary>=2.1.1",
"tiktoken>=0.11.0",
"tqdm>=4.67.1",
"trufflehog>=2.2.1",
]
[project.scripts]
aicontextator = "aicontextator:cli"
format = "scripts:format"
lint = "scripts:lint"
test = "scripts:test"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"ruff",
]