-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.01 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
[project]
name = "apc-cli"
version = "0.1.1"
description = "AI Personal Context — sync AI agent configs across machines and tools"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
dependencies = [
"click>=8.1.0",
"httpx>=0.27.0",
"keyring>=25.0.0",
"pyrage>=1.0.0",
"pyyaml>=6.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.8.0",
]
[project.scripts]
apc = "main:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = [
"cache", "collect", "config", "export_import",
"frontmatter_parser", "install", "llm_client", "llm_config",
"main", "mcp", "memory", "secrets_manager",
"skill", "skills", "status", "sync_helpers", "ui",
]
packages = ["extractors", "appliers"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]