-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (51 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "langsearch"
version = "0.1.9"
license = {text = "MIT License"}
authors = [
{name = "Dibya Chakravorty", email = "dibyachakravorty@gmail.com"}
]
description = "Easily create semantic search based LLM applications on your own data"
readme = "README.md"
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
python-requires = ">=3.9" # because of graphlib
dependencies = [
"inscriptis==2.3.2",
"langchain==0.0.101",
"langdetect==1.0.9",
"openai==0.27.0",
"readability-lxml==0.8.1",
"Scrapy==2.7.1",
"tika==2.6.0",
"tiktoken==0.1.2",
# Twisted>=18.9.0 is a dependency of Scrapy==2.7.1.
# But v23.8.0 released on 28.08.2023 broke Scrapy.
# So pinning to a working version.
"Twisted==22.10.0",
"weaviate-client==3.11.0",
]
[project.optional-dependencies]
image = [
"Pillow==9.4.0",
]
audio = [
"openai-whisper==20230124",
]
extras = [
"readabilipy==0.2.0",
"trafilatura==1.4.1",
]
all = [
"langsearch[image,audio,extras]"
]
[tool.hatch.build]
include = [
"langsearch/**/*.py",
]