-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (57 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "linhai"
version = "0.5.1"
description = "AI Agent for software engineering and penetration testing"
authors = [
{name = "LinHai"},
]
dependencies = [
"openai",
"anthropic",
"httpx",
"beautifulsoup4",
"mistune",
"textual",
"mcp",
"pyte",
"pydantic",
"chardet",
"bashlex",
"pillow",
"tomli-w",
"ether-ghost>=0.2.5",
"croniter",
"python-telegram-bot>=22.7",
"python-quickjs-ng",
"rich",
"pathspec",
"websockets",
"pyyaml",
"jsonschema",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"pylint",
"black",
"pyright",
"pytest",
"pytest-asyncio",
"tiktoken",
]
[tool.hatch.build.targets.wheel]
packages = ["linhai"]
artifacts = ["linhai/cl100k_base.tiktoken"]
[project.scripts]
linhai = "linhai.main:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"pyright>=1.1.407",
]