-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (37 loc) · 1.06 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
[tool.poetry]
name = "afwf_fts_anything"
version = "1.1.1"
description = "Allows you to do full-text search on your own dataset, and use the result to open url, open file, run script, or basically do anything."
authors = ["Sanhe Hu <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
afwf = "0.3.1"
attrs = "21.4.0"
attrs_mate = "1.0.2"
pathlib_mate = " 1.2.1"
diskcache = "5.4.0"
sqlitedict = "2.1.0"
whoosh = "2.7.4"
superjson = "1.0.2"
requests = "2.27.1"
cached-property = { version = "1.5.2", markers = "python_version <= '3.7'" }
[tool.poetry.dev-dependencies]
# Don't put anything here, explicit is better than implicit
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
twine = "3.8.0"
wheel = "0.37.1"
rich = "12.5.1"
fire = "0.5.0"
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "6.2.5"
pytest-cov = "2.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"