-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
64 lines (53 loc) · 1.09 KB
/
pyproject.toml
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
[project]
name = "r2ai"
dynamic = ["readme"]
version = "0.9.0"
description = "Artificial intelligence tooling for radare2"
license = {text = "MIT License"}
authors = [
{name = "pancake", email = "pancake@nopcode.org"}
]
dependencies = [
"rich",
"r2pipe",
"inquirer",
"llama-cpp-python==0.3.5",
"huggingface_hub",
"appdirs",
"unidecode",
"jsonref",
"transformers",
"pydantic",
"pyreadline3",
"tokentrim",
"boto3",
"colorama",
"textual",
"litellm==1.52.16",
"numpydoc"
]
[project.optional-dependencies]
extras = [
"chromadb",
"openai",
"anthropic",
"groq",
"google-generativeai",
"google-cloud-aiplatform"
]
[project.urls]
homepage = "https://www.radare.org/"
repository = "https://github.com/radareorg/r2ai"
[project.scripts]
r2ai = "r2ai.main:run"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["r2ai*"]
namespaces = true
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"