-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 1.39 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pae"
version = "0.2.0"
description = "Peripheral Attention Engineering — structured peripheral context for better LLM responses"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "Anthony Lee"}]
keywords = ["llm", "context-engineering", "rag", "ai"]
dependencies = []
[project.optional-dependencies]
inference = [
"openai>=1.0.0",
"anthropic>=0.30.0",
"google-genai>=1.0.0",
"python-dotenv>=1.0.0",
]
api = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"python-multipart>=0.0.9",
]
experiments = [
"numpy>=1.25.0",
"pandas>=2.0.0",
"scipy>=1.11.0",
"statsmodels>=0.14.0",
"pydantic>=2.0.0",
"tiktoken>=0.5.0",
]
phase2 = [
"torch>=2.0.0",
"transformers>=4.48.0",
"peft>=0.13.0",
"bitsandbytes>=0.44.0",
"accelerate>=1.0.0",
"datasets>=3.0.0",
]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.3.0",
"matplotlib>=3.8.0",
"seaborn>=0.13.0",
]
all = [
"pae[inference,api,experiments,phase2,dev]",
]
[project.scripts]
pae = "pae.cli:main"
[tool.setuptools.packages.find]
include = ["pae*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 140
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]