-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.32 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
56
57
58
59
60
61
62
63
[tool.poetry]
authors = ["Andrei Aksionov"]
description = "Semantic search powered by Weaviate vector search engine"
license = "MIT"
name = "weaviate-demo"
packages = [
{include = "src"},
]
version = "1.0.0"
[tool.poetry.dependencies]
beautifulsoup4 = "~4.10.0"
omegaconf = "~2.1.1"
pandas = "~1.4.0"
python = "~3.9.9"
spacy = "~3.2.3"
tqdm = "~4.62.3"
weaviate-client = "~3.3.0"
[tool.poetry.dev-dependencies]
bertopic = "~0.9.4"
black = {version = "*", extras = ["jupyter"]}
flake8 = "*"
flake8-absolute-import = "*"
flake8-annotations = "*"
flake8-bugbear = "*"
flake8-commas = "*"
flake8-comprehensions = "*"
flake8-docstrings = "~1.6.0"
flake8-eradicate = "*"
flake8-expression-complexity = "*"
flake8-isort = "*"
flake8-print = "*"
flake8-pytest-style = "*"
ipykernel = "~6.9.1"
matplotlib = "~3.5.1"
pytest = "~7.0.1"
python-Levenshtein = "~0.12.2"
scikit-learn = "~1.0.2"
seaborn = "~0.11.2"
termcolor = "~1.1.0"
torch = "1.10.2"
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
use_parentheses = true
[tool.black]
line_length = 120
target-version = ["py39"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
python_files = "*_test.py"
testpaths = ["tests"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]