-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (83 loc) · 2.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[tool.poetry]
name = "vectory"
version = "0.1.7"
description = "Streamline the benchmark and experimentation process of your models that rely on generating embeddings"
authors = ["Pento <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/pentoai/vectory"
repository = "https://github.com/pentoai/vectory"
keywords = [
"machine-learning",
"embeddings",
"visualization",
"feature similarity",
"feature store"
]
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
include = ["docker-compose.yml", "Dockerfile", ".dockerignore", "TROUBLESHOOTING.md"]
[tool.poetry.scripts]
vectory = "vectory.cli:app"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.11"
elasticsearch = "7.16.3"
tqdm = "^4.61.1"
typer = "^0.4.0"
elasticsearch-dsl = ">=7.0.0,<8.0.0"
peewee = "^3.14.10"
pandas = "^1.3.5"
numpy = ">=1.14.5"
pynndescent = "^0.5.6"
matplotlib = ">=3.3"
bokeh = "<=2.2.3"
streamlit = "^1.8.1, <1.12.0"
Jinja2 = "3.0.1"
streamlit-bokeh-events = "^0.1.2"
umap-learn = "^0.5.3"
plotly = "^5.9.0"
Pillow = "^9.2.0"
coolname = "^1.1.0"
tabulate = "^0.8.10"
psutil = "^5.9.1"
docker-compose = "^1.29.2"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
isort = "*"
ipykernel = "*"
ipython = "*"
ipdb = "*"
mypy = "*"
pytest = "^6.2.5"
python-dotenv = "^0.19.2"
pytest-cov = "^3.0.0"
types-tabulate = "^0.8.11"
[tool.isort]
profile = "black"
src_paths = "isort,test"
[tool.black]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
target-version = ['py38']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"