-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 936 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
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "que"
version = "0.1.0"
authors = [
{name = "Jorge Jiménez García", email = "jjimgar1@outlook.com"},
]
description = "Query your documents"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"transformers",
"llama-cpp-python",
"huggingface_hub",
"pdfminer.six",
"python-docx",
"ebooklib",
"bs4",
"chromadb",
"toml"
]
[project.optional-dependencies]
test = [
"coverage",
]
[tool.coverage.run]
omit = [
"que/**/__init__.py",
"que/cli.py",
]
[tool.setuptools]
packages = ["que"]
[tool.setuptools.package-data]
que = ["default_config.toml"]
[project.scripts]
que = "que.cli:main_query"