-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.5 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
[project]
name = "unit27-context-engine"
version = "0.1.0"
description = "Governed, token-aware context packaging for AI agents."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Unit27 Research" },
]
keywords = ["ai", "llm", "context", "cli", "tokens", "research-infrastructure", "unit27"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Text Processing",
]
dependencies = [
"typer>=0.12.0",
"rich>=13.0.0",
"tiktoken>=0.7.0",
"pyyaml>=6.0.0",
"pathspec>=0.12.0",
]
[project.scripts]
context-engine = "context_engine.cli:app"
[project.optional-dependencies]
dev = ["pytest>=8.0.0"]
[project.urls]
Homepage = "https://github.com/unit27research/unit27-context-engine"
Repository = "https://github.com/unit27research/unit27-context-engine"
Issues = "https://github.com/unit27research/unit27-context-engine/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
context_engine = ["data/*.yaml", "data/tiktoken_cache/*"]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"