-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.34 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "apecode"
version = "0.0.2"
description = "A terminal code agent powered by AI"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"openai>=2.0.0",
"anthropic>=0.80.0",
"fastmcp>=2.0.0",
"typer>=0.15.0",
"rich>=14.0.0",
"prompt-toolkit>=3.0.0",
]
authors = [
{ name = "ApeCode Team" }
]
license = { text = "Apache-2.0" }
keywords = ["ai", "agent", "cli", "code", "terminal"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
ape = "apecode.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.9.0",
]
[tool.ruff]
line-length = 180
target-version = "py313"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes (unused imports, etc.)
"I", # isort (import sorting)
"UP", # pyupgrade (modern Python syntax)
"B", # flake8-bugbear
"SIM", # flake8-simplify
"RUF", # ruff-specific rules
]
[tool.ruff.lint.isort]
known-first-party = ["apecode"]
[tool.pytest.ini_options]
testpaths = ["tests"]