-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
53 lines (49 loc) · 1.19 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
[tool.poetry]
name = "hypertag"
version = "0.6.3.3.1"
description = "File organization made for humans"
readme = "README.md"
authors = ["Sean <[email protected]>"]
license = "MIT"
homepage = "https://github.com/SeanPedersen/HyperTag"
repository = "https://github.com/SeanPedersen/HyperTag"
keywords = ["tag", "tagging", "file-system", "file", "organization", "search", "semantic", "text", "image", "pdf"]
classifiers = [
"Environment :: Console"
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8.2"
fire = "^0.3.1"
tqdm = "^4.55.0"
filetype = "^1.0.7"
watchdog = "^1.0.2"
cairocffi = "^1.2.0"
fuzzywuzzy = {extras = ["speedup"], version = "^0.18.0"}
PyPDF2 = "^1.26.0"
wordninja = "^2.0.0"
ftfy = "^5.8"
textract = "^1.6.3"
sentence-transformers = "^0.4.1"
rpyc = "^6.0.0"
torchvision = "^0.17.2"
Pillow = "^8.1.0"
pywebcopy = "^6.3.0"
hnswlib = "^0.8.0"
igraph = "^0.11.4"
fastapi = "^0.110.1"
uvicorn = "^0.29.0"
[tool.poetry.group.dev.dependencies]
pytest = "^5.2"
rope = "^0.18.0"
bandit = "^1.7.0"
flake8 = "^3.8.4"
black = "^24.3.0"
mypy = "^1.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100