1
1
mirror of https://github.com/dbcli/pgcli.git synced 2024-10-06 02:07:53 +03:00
pgcli/setup.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
2.4 KiB
Python
Raw Normal View History

import re
import ast
2015-10-23 12:49:20 +03:00
import platform
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('pgcli/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
2014-10-13 02:07:34 +04:00
2014-12-11 11:59:28 +03:00
description = 'CLI for Postgres Database. With auto-completion and syntax highlighting.'
2015-10-23 12:49:20 +03:00
install_requirements = [
2018-12-20 22:33:36 +03:00
'pgspecial>=1.11.5',
2017-05-20 08:15:56 +03:00
'click >= 4.1',
'Pygments >= 2.0', # Pygments has to be Capitalcased. WTF?
2018-11-11 16:16:32 +03:00
'prompt_toolkit>=2.0.6,<2.1.0',
2018-03-23 21:16:06 +03:00
'psycopg2 >= 2.7.4,<2.8',
2019-05-06 19:05:56 +03:00
'sqlparse >=0.3.0,<0.4',
2017-05-20 08:15:56 +03:00
'configobj >= 5.0.6',
'humanize >= 0.5.1',
'cli_helpers[styles] >= 1.2.0',
2017-05-20 08:15:56 +03:00
]
2015-10-23 12:49:20 +03:00
# setproctitle is used to mask the password when running `ps` in command line.
# But this is not necessary in Windows since the password is never shown in the
# task manager. Also setproctitle is a hard dependency to install in Windows,
# so we'll only install it if we're not in Windows.
2016-08-29 21:12:49 +03:00
if platform.system() != 'Windows' and not platform.system().startswith("CYGWIN"):
2015-10-23 12:49:20 +03:00
install_requirements.append('setproctitle >= 1.1.9')
2014-10-13 02:07:34 +04:00
setup(
2017-04-20 01:26:51 +03:00
name='pgcli',
author='Pgcli Core Team',
2017-04-20 01:29:31 +03:00
author_email='pgcli-dev@googlegroups.com',
2017-04-20 01:26:51 +03:00
version=version,
2017-06-26 20:44:13 +03:00
license='BSD',
2017-04-20 01:26:51 +03:00
url='http://pgcli.com',
packages=find_packages(),
package_data={'pgcli': ['pgclirc',
'packages/pgliterals/pgliterals.json']},
description=description,
long_description=open('README.rst').read(),
install_requires=install_requirements,
2018-07-22 08:34:56 +03:00
extras_require={
'keyring': ['keyring >= 12.2.0'],
},
2017-04-20 01:26:51 +03:00
entry_points='''
[console_scripts]
pgcli=pgcli.main:cli
''',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python',
2017-12-05 06:12:11 +03:00
'Programming Language :: Python :: 2',
2017-04-20 01:26:51 +03:00
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
2017-06-02 22:08:56 +03:00
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
2019-03-18 07:11:21 +03:00
'Programming Language :: Python :: 3.7',
2017-04-20 01:26:51 +03:00
'Programming Language :: SQL',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)