-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mythos-sentinel"
version = "2.0.5"
description = "Mythos — local AI chat assistant and security scanner"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Mythos" }]
keywords = ["llm", "chat", "security", "sast", "cli", "local"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Security",
"Programming Language :: Python :: 3",
]
dependencies = [
"llama-cpp-python>=0.2.0",
"huggingface_hub>=0.20.0",
"pyyaml>=6.0",
"rich>=13.0",
"gradio>=4.0",
"numpy>=1.24.0",
"tqdm>=4.65.0",
]
[project.optional-dependencies]
web = ["gradio>=4.0"]
rag = [
"chromadb>=0.4.0",
"sentence-transformers>=2.2.0",
"PyPDF2>=3.0.0",
]
dev = ["pytest>=7.0"]
all = ["mythos-sentinel[web,rag,dev]"]
[project.scripts]
mythos = "mythos_cli.main:cli_main"
[tool.setuptools.packages.find]
include = ["mythos_cli*", "engine*", "ui*"]
[tool.setuptools.package-data]
engine = ["py.typed"]
ui = ["py.typed"]
mythos_cli = ["py.typed"]