-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.07 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "litdb"
version = "2.0.0"
authors = [
{name = "John Kitchin", email = "[email protected]"},
]
maintainers = [
{name = "John Kitchin", email = "[email protected]"}
]
description = "A literature database tool with GPT integration."
license = {text = "MIT"}
readme = {file = "README.org", content-type = "text/plain"}
dependencies = [
"toml",
"tomlkit",
"requests",
"pymupdf4llm",
"langchain",
"tqdm",
"libsql-experimental",
"sentence-transformers",
"click",
"rich",
"beautifulsoup4",
"ratelimit",
"python-docx",
"python-pptx",
"nbconvert",
"nbformat",
"ollama",
"dateparser",
"jinja2",
"pytesseract",
"pillow",
"bibtexparser",
# "pyaudio",
# "playsound",
# "SpeechRecognition",
# for coa
"pandas",
"more-itertools",
"nameparser",
"tabulate",
"IPython"
]
[project.scripts]
litdb = "litdb.cli:cli"
[project.urls]
Homepage = "https://github.com/jkitchin/litdb"