forked from RedisAI/VectorSimilarity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (34 loc) · 975 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
41
42
[tool.poetry]
name = "VecSim"
version = "0.0.1"
description = "Python library around collection of vector similarity algorithms"
packages = [
{ include = 'src'}
]
authors = ["RedisLabs CTO Team <[email protected]>"]
license = "BSD-3-Clause"
classifiers = [
'Topic :: Database',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: BSD License',
'Development Status :: 3 - Alpha',
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
numpy = "^1.21"
hnswlib = "^0.6.2"
pytest = "^6.2.4"
scipy = "^1.9.1"
h5py = "^3.7.0"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.build]
script = "setup.py"
generate-setup-file = true