-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
52 lines (47 loc) · 1.37 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
[tool.poetry]
name = "redis-stack-tools"
version = "0.0.1"
description = "Tools, for building redis-stack"
authors = ["Your Name <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
PyYAML = "^6.0"
isort = "^5.10.1"
Fabric2 = "^3.0.0"
invoke = "^2.1.2"
[tool.poetry.dev-dependencies]
invoke = "^2.1.0"
requests = "~2.31" # FIXME https://github.com/docker/docker-py/issues/3256
loguru = "^0.6.0"
Jinja2 = "^3.0.3"
redis = "^5.0.0"
pytest = "^7.1.3"
docker = "^6.0.0"
flake8 = "^4.0.1"
black = "^22.10.0"
# https://github.com/ionrock/cachecontrol/issues/292
# only an issue on M1
urllib3 = "1.26.15"
[tool.pytest.ini_options]
markers = [
"xenial: ubuntu xenial tests",
"bionic: ubuntu bionic tests",
"focal: ubuntu focal tests",
"jammy: ubuntu jammy tests",
"bullseye: bullseye tests",
"archlinux: archlinux tests",
"amzn2: amazonlinux2 tests",
"appimage: appimage tests",
"rhel8: RedHat 8 (rhel8) tests",
"rhel9: RedHat 9 (rhel9) tests",
"physical: run tests only within a vagrant image",
"dockers_redis_stack: test the redis_stack docker",
"dockers_redis_stack_server: test the redis_stack_server docker",
"macos: osx specific tests",
"snaps: test the snapcraft snaps",
"arm: tests that run only on arm"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"