-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 749 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 749 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 = "neuralcore"
version = "0.1.0"
description = "NeuralCore framework for AI applications"
readme = "README.md"
authors = [
{ name = "Abyss-c0re", email = "dev@abyss-core.com" }
]
requires-python = ">=3.14"
# Runtime dependencies
dependencies = [
"aiofiles>=25.1.0",
"fastembed>=0.8.0",
"numpy>=2.4.3",
"openai>=2.28.0",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pyyaml>=6.0.3",
"rapidfuzz>=3.14.3",
"scikit-learn>=1.8.0",
"tokenizers>=0.22.2",
]
# Optional dev dependencies
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"black>=24.3.0"
]
[build-system]
requires = ["uv_build>=0.10.10,<0.11.0"]
build-backend = "uv_build"
[tool.pyright]
venvPath = "."
venv = ".venv"