-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (23 loc) · 1.2 KB
/
pyproject.toml
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
[tool.poetry]
name = "Aider LLM File Editor: A script-based tool for sequentially editing files, running files and their tests, and recording outputs, including errors and exceptions, from the terminal."
version = "0.1.0"
description = "A project to use OpenRouter models with aider-chat."
authors = ["Teoman Selcuk <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
aider-chat = "^0.56.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.1"
[tool.pyright] # Configuration for the Pyright static type checker
useLibraryCodeForTypes = true # Use library code for type inference
exclude = [".cache"] # Exclude the ".cache" directory from type checking
[build-system] # Build system configuration
requires = ["poetry-core>=1.0.0"] # Required version of poetry-core
build-backend = "poetry.core.masonry.api" # Build backend for Poetry
[[tool.poetry.packages]]
include = "Aider_Project" # Package configuration for the Aider_Project package
[tool.pytest.ini_options]
# Specify additional paths to be added to sys.path
# "Aider_Project" and "tests" directories will be included in the Python path when running pytest
python_paths = ["Aider_Project", "tests"]
addopts = "-v --maxfail=0"