-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 1.34 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
71
72
73
74
75
76
77
78
[project]
name = "researchos"
version = "0.1.0"
description = "ResearchOS research pipeline backend"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"alembic>=1.14.0",
"apscheduler>=3.10.4",
"beautifulsoup4>=4.12.3",
"fastapi>=0.116.0",
"httpx>=0.28.1",
"jinja2>=3.1.4",
"mcp>=1.13.1",
"paramiko>=3.5.1",
"pydantic-settings>=2.10.1",
"pywinpty>=3.0.3; platform_system == 'Windows'",
"python-dotenv>=1.1.1",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"python-multipart>=0.0.20",
"sqlalchemy>=2.0.43",
"uvicorn>=0.35.0",
"websockets>=16.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"ruff>=0.12.12",
]
llm = [
"openai>=1.102.0",
"anthropic>=0.62.0",
]
pdf = [
"pymupdf==1.26.7",
"Pillow>=10.4.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["apps*", "packages*"]
[tool.ruff]
line-length = 100
target-version = "py311"
exclude = [
".codex",
".venv",
"backups",
"data",
"reference",
"tmp",
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = [
".codex",
".git",
".venv",
"backups",
"data",
"frontend",
"reference",
"tmp",
]