-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 767 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 767 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
[project]
name = "rufler"
version = "0.1.0"
description = "Python wrapper around ruflo for one-command AI agent orchestration"
requires-python = ">=3.9"
authors = [{ name = "john_f" }]
dependencies = [
"typer>=0.12.0",
"pyyaml>=6.0",
"rich>=13.0",
]
[project.scripts]
rufler = "rufler.cli:app"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
tui = [
"textual>=1.0",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"mypy>=1.10",
]
[tool.setuptools.packages.find]
include = ["rufler*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false