-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 918 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
44
45
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "craig"
version = "0.1.0"
description = "Claude Code Scientist - Autonomous research system"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.9.0",
"pymupdf>=1.24.0",
"pymupdf4llm>=0.0.10",
"pdfplumber>=0.10.0",
"mcp>=1.0.0",
"requests>=2.31.0",
"numpy>=1.24.0",
"claude-agent-sdk>=0.1.0",
]
[project.optional-dependencies]
marker = ["marker-pdf>=0.2.0"]
kg = [
"spacy>=3.7.0",
"sentence-transformers>=2.2.0",
"torch>=2.0.0",
"faiss-cpu>=1.7.4",
"httpx>=0.25.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
all = [
"craig[kg,marker,dev]",
]
[project.scripts]
craig-literature = "craig.cli.literature_pipeline:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["craig*"]