-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 818 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "bilevel-autoresearch"
version = "0.3.0"
requires-python = ">=3.10"
description = "A general framework for self-improving research pipelines with bilevel optimization"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["llm", "ai", "research", "bilevel-optimization", "agents", "pipeline"]
dependencies = [
"openai>=1.0.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.25.0"]
dev = ["pytest>=8.0", "ruff>=0.3.0"]
[tool.setuptools.packages.find]
where = ["."]
include = ["core*", "domains*"]
[tool.ruff]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501", "E741", "E402"] # E501: line length, E741: ambiguous var names, E402: .env loading before imports