-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
pyproject.toml
57 lines (51 loc) · 1.56 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
[tool.poetry]
name = "iredis"
version = "1.15.0"
description = "Terminal client for Redis with auto-completion and syntax highlighting."
authors = ["laixintao <laixintao1995@163.com>"]
readme = 'README.md'
license = "BSD-3-Clause"
repository = 'https://github.com/laixintao/iredis'
homepage = "https://github.com/laixintao/iredis"
keywords=["Redis", "key-value store", "Commandline tools", "Redis Client"]
classifiers = [
# see https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Console :: Curses",
"Environment :: MacOS X",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
]
packages = [
{ include = "iredis" },
]
[tool.poetry.dependencies]
python = "^3.8"
prompt_toolkit = "^3"
Pygments = "^2"
mistune = "^3.0"
configobj = "^5.0"
click = "^8.0"
# wcwidth 0.2.x uses pkg_resources which is not supported by PyOxidizer
wcwidth = "0.1.9"
packaging = "^23.0"
redis = "^5.0.0"
python-dateutil = "^2.8.2"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
pexpect = "^4.7"
[tool.poetry.scripts]
iredis = 'iredis.entry:main'
[tool.poetry.group.dev.dependencies]
freezegun = "^1.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"