-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 821 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 821 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "filesearch"
version = "0.1.1"
description = "Локальный семантический поиск по документам"
requires-python = ">=3.11"
dependencies = [
"PySide6>=6.8,<7",
"httpx>=0.27,<1",
"numpy>=1.26,<3",
"pypdfium2>=4.30,<5",
"Pillow>=12.3,<13",
"python-docx>=1.1,<2",
"openpyxl>=3.1,<4",
"python-dotenv>=1.0,<2",
]
[project.urls]
Homepage = "https://github.com/Mafsolin/FileSearch"
Repository = "https://github.com/Mafsolin/FileSearch.git"
Issues = "https://github.com/Mafsolin/FileSearch/issues"
[project.scripts]
filesearch = "filesearch.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]