2025-02-09 16:57:44 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "iredis"
|
2025-02-09 17:25:10 +01:00
|
|
|
version = "1.15.0"
|
2025-02-09 16:57:44 +01:00
|
|
|
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",
|
2025-02-09 17:04:04 +01:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2025-02-09 17:05:31 +01:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2025-02-09 17:22:03 +01:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2025-02-09 17:25:10 +01:00
|
|
|
"Programming Language :: Python :: 3.12",
|
2025-02-09 16:57:44 +01:00
|
|
|
"Topic :: Database",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
]
|
|
|
|
|
|
|
|
packages = [
|
|
|
|
{ include = "iredis" },
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2025-02-09 17:23:39 +01:00
|
|
|
python = "^3.8"
|
2025-02-09 16:57:44 +01:00
|
|
|
prompt_toolkit = "^3"
|
|
|
|
Pygments = "^2"
|
2025-02-09 17:20:30 +01:00
|
|
|
mistune = "^3.0"
|
2025-02-09 16:57:44 +01:00
|
|
|
configobj = "^5.0"
|
2025-02-09 17:22:03 +01:00
|
|
|
click = "^8.0"
|
2025-02-09 16:57:44 +01:00
|
|
|
# wcwidth 0.2.x uses pkg_resources which is not supported by PyOxidizer
|
|
|
|
wcwidth = "0.1.9"
|
2025-02-09 17:22:03 +01:00
|
|
|
packaging = "^23.0"
|
|
|
|
redis = "^5.0.0"
|
2025-02-09 17:25:10 +01:00
|
|
|
python-dateutil = "^2.8.2"
|
2025-02-09 16:57:44 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2025-02-09 17:11:21 +01:00
|
|
|
pytest = "^7.2"
|
2025-02-09 16:57:44 +01:00
|
|
|
pexpect = "^4.7"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
iredis = 'iredis.entry:main'
|
|
|
|
|
2025-02-09 17:25:10 +01:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
freezegun = "^1.4.0"
|
|
|
|
|
2025-02-09 16:57:44 +01:00
|
|
|
[build-system]
|
2025-02-09 17:09:15 +01:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|