-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 945 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 945 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyob"
version = "0.3.3"
description = "PyOuroBoros: An autonomous Python coding agent."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"requests",
"charset-normalizer",
"chardet",
"flask",
"ollama",
"ruff",
"mypy",
"pytest",
"types-requests",
"types-chardet"
]
[project.scripts]
pyob = "pyob.pyob_launcher:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I"] # Flake8, Pyflakes, Warnings, isort
ignore = ["E501"] # Ignore line length violations (let formatter handle it)
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
explicit_package_bases = true
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]