-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 991 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "redis-data-transfer"
version = "1.1.0"
description = "Transfer data between a redis instances or clusters"
license = "MIT"
authors = ["EDITED Devs <dev@edited.com>"]
readme = "README.md"
homepage = "https://github.com/EDITD/redis_data_transfer"
repository = "https://github.com/EDITD/redis_data_transfer"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
include = [
"CHANGELOG.md",
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
redis-py-cluster = "~2.0.0"
setproctitle = "~1.1.10"
[tool.poetry.dev-dependencies]
ipython = "~7.16.3"
docker = "^4.2.0"
[tool.poetry.scripts]
redis-data-transfer = "redis_data_transfer:main"