-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
136 lines (125 loc) · 2.77 KB
/
pyproject.toml
File metadata and controls
136 lines (125 loc) · 2.77 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
[build-system]
requires = ["scikit-build-core>=0.8", "pybind11>=2.12", "setuptools"]
build-backend = "scikit_build_core.build"
[project]
name = "ataraxai"
version = "0.0.1"
description = "A Local, Privacy-Preserving AI Assistant Powered by llama.cpp"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [
{ name = "Yannick Wend Kuni Zoetgnande", email = "yannickzoet@gmail.com" },
]
dependencies = [
"numpy",
"requests",
"icalendar==6.3.1",
"beautifulsoup4==4.13.4",
"chromadb==1.0.12",
"watchdog==6.0.0",
"platformdirs==4.3.8",
"sentence_transformers==5.0.0",
"langchain==0.3.25",
"langchain-text-splitters==0.3.8",
"python-pptx==1.0.2",
"python-docx==1.1.2",
"tiktoken==0.9.0",
"pdfplumber",
"PyYAML",
"pymupdf",
"mutagen==1.47.0",
"peewee==3.18.1",
"sounddevice",
"webrtcvad-wheels",
"ml-collections==1.1.0",
"PySide6==6.9.1",
"prometheus-client==0.22.1",
"prometheus-fastapi-instrumentator",
"sentencepiece",
"pytest",
"openai",
"librosa>=0.11.0",
"numba>=0.59.0",
"llvmlite>=0.42.0",
"soundfile",
"pytesseract",
"python-multipart",
"cryptography",
"ragas",
"uvicorn[standard]",
"fastapi",
"psutil",
"nvitop",
"python-ulid",
"isort",
"tornado",
"pybreaker",
"pytest-asyncio",
"watchfiles",
"async_lru",
"aiosqlite",
"colored"
]
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-asyncio",
"ruff",
"mypy",
"types-PyYAML",
"types-peewee",
"types-requests",
"types-tqdm",
]
[project.urls]
Homepage = "https://github.com/zyannick/Atarax-AI"
[tool.scikit-build]
cmake.source-dir = "."
cmake.build-type = "Release"
cmake.args = ["-DCMAKE_BUILD_TYPE=Release"]
wheel.packages = ["ataraxai"]
[tool.pytest.ini_options]
testpaths = [
"tests/python",
]
markers = [
"unit: marks tests as unit tests (fast, isolated)",
"integration: marks tests as integration tests (slower, requires real components)",
]
filterwarnings = [
"ignore:.*builtin type SwigPy.*:DeprecationWarning",
]
[tool.ruff]
exclude = [
".git",
".idea",
".venv",
"build",
"dist",
"ataraxai/hegemonikon/third_party",
]
[tool.mypy]
exclude = '(?x)(ataraxai/hegemonikon/third_party/|build/|dist/|\.venv/)'
plugins = ["pydantic.mypy"]
[[tool.mypy.overrides]]
module = [
"fitz",
"webrtcvad",
"sounddevice",
"pytesseract"
]
ignore_missing_imports = true
[tool.setuptools.packages.find]
where = ["."]
include = ["ataraxai*"]