blob: d47ede214d66f9ae1256712880b7cf23affac02e (
plain)
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 = "iredis"
version = "0.1.13"
description = "Terminal Client for Redis with AutoCompletion and Syntax Highlighting."
authors = ["laixintao <laixintao1995@163.com>"]
readme = 'README.md'
license = "MIT"
repository = 'https://github.com/laixintao/iredis'
homepage = "https://github.com/laixintao/iredis"
keywords=["Redis", "key-value store", "Commandline tools"]
classifiers = [
# see https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: Console :: Curses",
"Environment :: MacOS X",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Database",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
]
include = ["command_syntax.csv", "commands.json"]
[tool.poetry.dependencies]
python = "^3.7"
redis = "^3"
prompt_toolkit = "^2"
Pygments = "^2"
click = { git = "https://github.com/pallets/click.git", branch = "master" }
[tool.poetry.dev-dependencies]
pytest = "^5"
requests = "^2"
lxml = "^4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
iredis = 'iredis.entry:main'
|