-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (80 loc) · 2.59 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (80 loc) · 2.59 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
# File Version: 1.3.0
# /pyproject.toml
# ==============================================================================
# Precision File Search (PFS) - pyproject.toml
# ==============================================================================
# This file defines project metadata and dependencies.
# By omitting version specifiers, pip will install the latest available
# versions of all packages.
# ==============================================================================
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
# --- Core Project Metadata ---
name = "precision-file-search"
version = "1.3.0"
authors = [
{ name = "Ali Kazemi", email = "eng.ali.kazemi@outlook.com" },
]
description = "An AI-powered local file search and classification platform."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "AGPL-3.0-or-later" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Advanced Search",
"Topic :: Utilities",
]
keywords = ["search", "rag", "ai", "fastapi", "llm", "semantic-search", "classifier"]
# --- Project Dependencies ---
dependencies = [
# Web Framework & Server
"fastapi",
"uvicorn[standard]",
"pydantic",
# Environment & Utilities
"python-dotenv",
"rich",
"aiofiles",
# Machine Learning & Classifier
"scikit-learn",
"joblib",
# Document & File Handling
"unstructured[all-docs]",
"pypdf",
"python-docx",
"PyMuPDF",
# Core AI & NLP Libraries (LangChain & Hugging Face)
"langchain",
"langchain-community",
"langchain-openai",
"langchain-huggingface",
"langchain_qdrant",
"langchain_unstructured",
"torch",
"transformers",
"sentence-transformers",
# Vector Database Client
"qdrant-client",
# Other utilities that might be required by dependencies
"hf_xet",
"dill",
]
[project.urls]
Homepage = "https://github.com/PFS-AI/PFS"
"Bug Tracker" = "https://github.com/PFS-AI/PFS/issues"
# --- Tool Specific Configuration ---
[tool.setuptools.packages.find]
where = ["."]
include = ["backend*"]