-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 931 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
46
47
48
49
50
51
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "darwinian-evolver"
version = "0.1.0"
readme = "README.md"
dependencies = [
"anthropic==0.78.0",
"numpy==2.4.2",
"google-genai==1.56.0",
"openai==2.16.0",
"pydantic==2.12.5",
"jinja2==3.1.6",
"func_timeout==4.3.5",
"fsspec==2026.1.0",
]
requires-python = ">=3.11"
[tool.setuptools]
packages.find.include = ["darwinian_evolver*"]
package-data.darwinian_evolver = ["py.typed"]
[dependency-groups]
dev = [
"tqdm",
"pandas",
"pandas-stubs",
"ruff",
]
test = [
"pytest",
]
[tool.ruff]
line-length = 119
[tool.ruff.format]
docstring-code-line-length = 119
quote-style = "double"
indent-style = "space"
[tool.ruff.lint.isort]
force-single-line = true
case-sensitive = true
order-by-type = false
known-first-party = [
"darwinian_evolver",
]
no-lines-before = ["future"]