-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 957 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
[tool.poetry]
name = "embuddy"
version = "0.1.2"
description = "embuddy is a package helps with using text embeddings for local data analysis."
authors = ["Peter Baumgartner"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
sentence-transformers = "^2.2.0"
zarr = "^2.11.3"
pynndescent = ">=0.5.7, <1.0"
joblib = "^1.0.1"
joblib-zstd = ">=0.1.1, <0.2"
numba = ">=0.55.2, <1.0"
umap-learn = ">=0.5.3, <1.0"
numpy = "^1.22.4"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
ipython = "^7.28.0"
black = "^21.9b0"
isort = "^5.9.3"
mypy = "^0.910"
flake8 = "^3.9.2"
pytest-cov = "^3.0.0"
pytest-sugar = "^0.9.4"
Faker = "^8.14.1"
mkdocs = "^1.3.0"
mkdocs-material = "^8.2.16"
mkdocstrings = {extras = ["python"], version = "^0.19.0"}
pandas = ">=1.3, <2.0"
Pygments = "^2.10.0"
pymdown-extensions = "^9.0"
pyre-check = "^0.9.8"
Jinja2 = "^3.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"