-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.23 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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "solari-ai"
version = "0.2.0"
description = "The Deep Knowledge Engine — Turn anything into a searchable knowledge brain"
readme = "README.md"
license = {text = "AGPL-3.0"}
requires-python = ">=3.10"
authors = [{name = "Solari Systems", email = "contact@solarisystems.net"}]
keywords = ["knowledge-base", "faiss", "rag", "cognitive-architecture", "cross-domain"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"faiss-cpu>=1.7.0",
"sentence-transformers>=2.0.0",
"numpy>=1.21.0",
"requests>=2.28.0",
"beautifulsoup4>=4.11.0",
]
[project.optional-dependencies]
youtube = ["yt-dlp>=2023.0.0"]
pdf = ["pymupdf>=1.22.0"]
all = ["yt-dlp>=2023.0.0", "pymupdf>=1.22.0"]
[project.scripts]
solari = "solari.cli:main"
[project.urls]
Homepage = "https://solarisystems.net"
Repository = "https://github.com/SolariResearch/solari"
Issues = "https://github.com/SolariResearch/solari/issues"