-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 851 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
[project]
name = "rune"
version = "0.2.0"
description = "A powerful coding agent with a clean API"
readme = "README.md"
requires-python = ">=3.10.13,<4.0"
authors = [{ name = "Freddie Vargus", email = "fjv41995@gmail.com" }]
dependencies = [
"openai>=1.0.0,<2.0.0",
"anthropic>=0.39.0,<1.0.0",
"rich>=13.0.0,<14.0.0",
"prompt_toolkit>=3.0.0,<4.0.0",
"pyyaml>=6.0",
]
[project.scripts]
rune = "rune.cli.main:main"
[project.optional-dependencies]
dev = [
"pytest==8.3.5",
"ipython>=8.32.0,<9.0.0",
"pdbpp==0.9.5",
"fancycompleter==0.9.1",
]
[build-system]
requires = ["hatchling>=1.24.0"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "-v"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"TID",
]
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"