-
Notifications
You must be signed in to change notification settings - Fork 143
/
pyproject.toml
45 lines (40 loc) · 1.05 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
authors = [{name = "Dylan Freedman", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"annoy_fixed>=1.16.3",
"click>=8.1.3",
"Flask>=2.2.3",
"openai>=0.27.2",
"Pillow>=9.5.0",
"pypdfium2>=4.5.0",
"python-dotenv>=1.0.0",
"numpy<2",
"tiktoken>=0.3.3",
"torch>=2.0.0",
"tqdm>=4.65.0",
"transformers>=4.27.4",
"setuptools",
]
description = "A semantic search CLI tool"
name = "semantra"
readme = "README.md"
version = "0.1.12"
[project.urls]
"Bug Tracker" = "https://github.com/freedmand/semantra/issues"
"Homepage" = "https://github.com/freedmand/semantra"
"Repository" = "https://github.com/freedmand/semantra"
[project.scripts]
semantra = "semantra.semantra:main"
[tool.setuptools.packages.find]
include = ["semantra*"]
where = ["src"]
[tool.setuptools.package-data]
semantra = ["client_public/**/*"]