-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 813 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
[tool.setuptools.packages.find]
include = ["domo_vector*"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "domo-vector"
version = "0.1"
description = "A CLI for chunking, uploading, and managing documentation files in a Domo vector index."
authors = [
{ name = "Jon Tiritilli" }
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"httpx",
"langchain-text-splitters",
"pymupdf",
"beautifulsoup4",
"python-dotenv",
"pillow"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio"
]
[project.scripts]
domo-vector = "domo_vector_cli.main:main"
[tool.pytest.ini_options]
addopts = "-v --tb=short"
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"asyncio: marks tests as async",
]