-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
59 lines (53 loc) · 1.43 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
[tool.poetry]
name = "redisai"
version = "1.3.0"
description = "RedisAI Python Client"
authors = ["Redis <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.rst"
packages = [
{ include = 'redisai' },
]
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 :: 5 - Production/Stable'
]
[tool.poetry.dependencies]
python = ">=3.8,<=4.0.0"
redis = "^4.1.4"
hiredis = ">=0.20"
numpy = ">=1.19.5"
six = ">=1.10.0"
Deprecated = "^1.2.12"
pytest = "^7.2.1"
[tool.poetry.dev-dependencies]
codecov = "^2.1.11"
flake8 = "<6.0.0"
ml2rt = "^0.2.0"
tox = ">=3.23.1,<=4.0.0"
tox-poetry = "^0.3.0"
Sphinx = "^4.1.2"
sphinx-rtd-theme = "^0.5.2"
readthedocs-sphinx-search = "^0.1.0"
sphinx-autoapi = "^1.8.3"
toml = "^0.10.2"
bandit = "^1.7.0"
pylint = "^2.8.2"
vulture = "^2.3"
scikit-image = "^0.19.3"
[tool.poetry.urls]
"Project URL" = "https://redisai.io"
Repository = "https://github.com/RedisAI/redisai-py"
Documentation = "https://redisai.readhtedocs.io"
Homepage = "https://oss..com/redisai/"
Tracker = "https://github.com/RedisAI/redisai-py/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"