From 955406a2ac61bb0e8b16b05343d33466fb09851f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Feb 2021 12:18:07 +0100 Subject: Adding debian version 1.9.1-1. Signed-off-by: Daniel Baumann --- debian/local/setup.py | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 debian/local/setup.py (limited to 'debian/local') diff --git a/debian/local/setup.py b/debian/local/setup.py new file mode 100644 index 0000000..48c148e --- /dev/null +++ b/debian/local/setup.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- + +try: + from setuptools import setup +except ImportError: + from distutils.core import setup + + +import os.path + +readme = '' +here = os.path.abspath(os.path.dirname(__file__)) +readme_path = os.path.join(here, 'README.rst') +if os.path.exists(readme_path): + with open(readme_path, 'rb') as stream: + readme = stream.read().decode('utf8') + + +setup( + long_description=readme, + name='iredis', + version='1.9.1', + description='Terminal client for Redis with auto-completion and syntax highlighting.', + python_requires='==3.*,>=3.6.0', + project_urls={"homepage": "https://github.com/laixintao/iredis", "repository": "https://github.com/laixintao/iredis"}, + author='laixintao', + author_email='laixintao1995@163.com', + license='BSD-3-Clause', + keywords='Redis key-value store Commandline tools Redis Client', + classifiers=['Development Status :: 4 - Beta', 'Environment :: Console', 'Environment :: Console :: Curses', 'Environment :: MacOS X', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Topic :: Database', 'License :: OSI Approved :: MIT License', 'Intended Audience :: Developers'], + entry_points={"console_scripts": ["iredis = iredis.entry:main"]}, + packages=['iredis', 'iredis.data', 'iredis.data.commands'], + package_dir={"": "."}, + package_data={"iredis.data": ["*.csv", "*.json"], "iredis.data.commands": ["*.md"]}, + install_requires=['click==7.*,>=7.0.0', 'configobj==5.*,>=5.0.0', 'importlib-resources==1.0.2', 'mistune==0.*,>=0.8.0', 'pendulum==2.*,>=2.0.0', 'prompt-toolkit==3.*,>=3.0.0', 'pygments==2.*,>=2.0.0', 'redis==3.*,>=3.0.0', 'wcwidth==0.1.9'], + extras_require={"dev": ["pexpect==4.*,>=4.7.0", "pytest==5.*,>=5.0.0"]}, +) -- cgit v1.2.3