forked from storytracer/semantra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1020 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "semantra"
version = "0.1.8"
description = "A semantic search CLI tool"
authors = [{name = "Dylan Freedman", email = "[email protected]"}]
readme = "README.md"
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",
"tiktoken>=0.3.3",
"torch>=2.0.0",
"tqdm>=4.65.0",
"transformers>=4.27.4"
]
[project.urls]
"Homepage" = "https://github.com/freedmand/semantra"
"Repository" = "https://github.com/freedmand/semantra"
"Bug Tracker" = "https://github.com/freedmand/semantra/issues"
[project.scripts]
semantra = "semantra.semantra:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
semantra = ["client_public"]