-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 781 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 781 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "deepscientist"
version = "1.5.17"
description = "DeepScientist Core skeleton"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [
{ name = "OpenAI Codex" }
]
dependencies = [
"cryptography>=42,<46",
"lark-oapi>=1.5,<2",
"mcp>=1.19,<2",
"Pillow>=10,<12",
"PyYAML>=6,<7",
"rich>=14,<15",
"textual>=0.80,<1",
"websockets>=15,<16"
]
[project.optional-dependencies]
acp = [
"agent-client-protocol>=0.8,<1",
]
[project.scripts]
ds = "deepscientist.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["deepscientist", "deepscientist.*"]
namespaces = false