-
Notifications
You must be signed in to change notification settings - Fork 662
/
setup.py
executable file
·127 lines (107 loc) · 3.65 KB
/
setup.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/usr/bin/env python
import ast
import re
import subprocess
import sys
from setuptools import Command, find_packages, setup
from setuptools.command.test import test as TestCommand
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('mycli/__init__.py') as f:
version = ast.literal_eval(_version_re.search(
f.read()).group(1))
description = 'CLI for MySQL Database. With auto-completion and syntax highlighting.'
install_requirements = [
'click >= 7.0',
# Pinning cryptography is not needed after paramiko 2.11.0. Correct it
'cryptography >= 1.0.0',
# 'Pygments>=1.6,<=2.11.1',
'Pygments>=1.6',
'prompt_toolkit>=3.0.6,<4.0.0',
'PyMySQL >= 0.9.2',
'sqlparse>=0.3.0,<0.5.0',
'sqlglot>=5.1.3',
'configobj >= 5.0.5',
'cli_helpers[styles] >= 2.2.1',
'pyperclip >= 1.8.1',
'pyaes >= 1.6.1',
'pyfzf >= 0.3.1',
]
if sys.version_info.minor < 9:
install_requirements.append('importlib_resources >= 5.0.0')
class lint(Command):
description = 'check code against PEP 8 (and fix violations)'
user_options = [
('branch=', 'b', 'branch/revision to compare against (e.g. main)'),
('fix', 'f', 'fix the violations in place'),
('error-status', 'e', 'return an error code on failed PEP check'),
]
def initialize_options(self):
"""Set the default options."""
self.branch = 'main'
self.fix = False
self.error_status = True
def finalize_options(self):
pass
def run(self):
cmd = 'pep8radius {}'.format(self.branch)
if self.fix:
cmd += ' --in-place'
if self.error_status:
cmd += ' --error-status'
sys.exit(subprocess.call(cmd, shell=True))
class test(TestCommand):
user_options = [
('pytest-args=', 'a', 'Arguments to pass to pytest'),
('behave-args=', 'b', 'Arguments to pass to pytest')
]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ''
self.behave_args = '--no-capture'
def run_tests(self):
unit_test_errno = subprocess.call(
'pytest test/ ' + self.pytest_args,
shell=True
)
cli_errno = subprocess.call(
'behave test/features ' + self.behave_args,
shell=True
)
subprocess.run(['git', 'checkout', '--', 'test/myclirc'], check=False)
sys.exit(unit_test_errno or cli_errno)
setup(
name='mycli',
author='Mycli Core Team',
author_email='[email protected]',
version=version,
url='http://mycli.net',
packages=find_packages(exclude=['test*']),
package_data={'mycli': ['myclirc', 'AUTHORS', 'SPONSORS']},
description=description,
long_description=description,
install_requires=install_requirements,
entry_points={
'console_scripts': ['mycli = mycli.main:cli'],
},
cmdclass={'lint': lint, 'test': test},
python_requires=">=3.7",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: SQL',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
extras_require={
'ssh': ['paramiko'],
},
)