-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 844 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
[project]
name = "mini-agent"
version = "0.16.4"
description = "A minimal agent."
readme = "README.md"
requires-python = ">=3.14"
authors = [{ name = "Kowyo", email = "kowyo@outlook.com" }]
dependencies = [
"anthropic>=0.102.0",
"pillow>=12.2.0",
"prompt-toolkit>=3.0.52",
"pyobjc-framework-cocoa>=12.1 ; sys_platform == 'darwin'",
"python-dotenv>=1.2.2",
"pyyaml>=6.0.3",
"rich>=15.0.0",
"tomli-w>=1.2.0",
]
[dependency-groups]
dev = [
"prek>=0.4.0",
"ruff>=0.15.13",
"ty>=0.0.37",
]
[project.scripts]
mini = "mini_agent:main"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "PTH", "ANN", "SIM"]
ignore = ["E501"]
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools>=82.0.1", "mypy[mypyc]>=2.1.0"]
build-backend = "setuptools.build_meta"