-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (107 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
116 lines (107 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "glyph-agents"
version = "0.3.0"
description = "Vendor Agnostic Agent SDK"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Louis Tricot", email = "louistricotkarl@gmail.com" },
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
dependencies = [
"claude-agent-sdk==0.1.61",
"keyring>=25",
"openai-agents==0.14.1",
"pyyaml",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9",
"pytest-asyncio>=0.24,<1",
"ruff>=0.14.10,<0.15",
]
[project.scripts]
glyph = "glyph.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
exclude = [
".venv*",
".git",
"__pycache__",
".eggs",
"*.egg",
"build",
]
lint.ignore = [
"A003",
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D106",
"D107",
"D200",
"D202",
"D204",
"D205",
"D208",
"D210",
"D300",
"D400",
"D401",
"D403",
"D404",
"D413",
"E203",
"E231",
"E721",
"G201",
]
line-length = 120
lint.preview = true
lint.explicit-preview-rules = true
lint.select = [
"A",
"D",
"E",
"F",
"G",
"I",
"PLW0244",
"UP006",
"W",
]
lint.unfixable = ["F401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.ruff.lint.isort]
force-single-line = true
lines-after-imports = 2
force-sort-within-sections = true
known-first-party = ["glyph"]
relative-imports-order = "furthest-to-closest"