-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 978 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (41 loc) · 978 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
48
49
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "codemate"
version = "0.1.0"
description = "Local AI coding agent backend"
readme = "docs/requirements/README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0,<1.0",
"httpx>=0.27.0,<1.0",
"pydantic-settings>=2.5.0,<3.0",
"tiktoken>=0.8.0,<1.0",
"uvicorn[standard]>=0.30.0,<1.0",
]
[project.scripts]
codemate = "app.cli.main:main"
[project.optional-dependencies]
dev = [
"mypy>=1.11.0,<3.0",
"pytest>=8.3.0,<10.0",
"pytest-asyncio>=0.24.0,<2.0",
"ruff>=0.6.0,<1.0",
]
[tool.setuptools.packages.find]
include = ["app*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
python_version = "3.12"
packages = ["app"]
strict = true
warn_unused_ignores = true
warn_return_any = true