generated from mozilla-ai/Blueprint-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (42 loc) · 968 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=48", "setuptools_scm[toml]>=6.3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "structured-qa"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"fire",
"huggingface-hub",
"llama-cpp-python",
"loguru",
"pydantic",
"pymupdf4llm",
"pyyaml",
"rapidfuzz",
"streamlit",
]
[project.optional-dependencies]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings-python",
]
tests = [
"pytest>=8,<9",
"pytest-sugar>=0.9.6",
"pytest-mock>=3.14.0"
]
[project.urls]
Documentation = "https://mozilla-ai.github.io/structured-qa/"
Issues = "https://github.com/mozilla-ai/structured-qa/issues"
Source = "https://github.com/mozilla-ai/structured-qa"
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
where = ["src"]
namespaces = false
[tool.setuptools_scm]
[project.scripts]
structured-qa = "structured_qa.cli:main"