-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.09 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "cypilot"
version = "3.5.0-beta"
description = "Cypilot global CLI proxy — deterministic agent tool for structured workflows"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11.4"
# @cpt-dod:cpt-cypilot-dod-core-infra-global-package:p1 — zero third-party dependencies
dependencies = []
[project.scripts]
# @cpt-dod:cpt-cypilot-dod-core-infra-global-package:p1 — console entry points
cpt = "cypilot_proxy.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pylint.main]
jobs = 0
persistent = false
py-version = "3.11"
ignore-paths = [
"^\\.bootstrap/",
"^examples/",
"^tests/",
]
[tool.pylint.format]
max-line-length = 120
[tool.pylint.design]
max-args = 8
max-positional-arguments = 8
[tool.pylint.reports]
score = false
[tool.pylint."messages control"]
disable = [
"all",
]
enable = [
"E0602",
"E1135",
"E0102",
"W0718",
"W1510",
"W0707",
"W0404",
"W0212",
"W0603",
"W0612",
"W0613",
"W0611",
]