forked from RedisLabsModules/RLTest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.1 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
[tool.poetry]
name = "RLTest"
version = "99.99.99"
description="Redis Modules Test Framework, allow to run tests on redis and modules on a variety of environments"
authors = ["Redis, Inc. <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
packages = [
{ include = 'RLTest' },
]
classifiers = [
'Topic :: Database',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'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.7.0"
distro = "^1.5.0"
redis = "^5.0.0rc2"
psutil = "^5.9.5"
pytest-cov = "^4.1.0"
pytest = "^7.4"
progressbar2 = "4.2"
[tool.poetry.urls]
Repository = "https://github.com/RedisLabsModules/RLTest"
[tool.poetry.scripts]
RLTest = 'RLTest.__main__:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"