-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 964 Bytes
/
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
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='kimo',
version=open("kimo/_version.py").readlines()[-1].split()[-1].strip("\"'"),
packages=['kimo'],
python_requires='>=3.5.2',
install_requires=[
'requests>=2',
'Flask>=0.12',
'psutil>=2',
'terminaltables>=3',
'mysql-connector>=2.1,<2.2',
'waitress>=1',
],
include_package_data=True,
license='BSD License',
description='Finds owner processes of MySQL queries.',
long_description=README,
keywords='kimo mysql query monitor diagnostic',
url='https://github.com/putdotio/kimo',
author='Omer Murat Yildirim, Cenk Alti',
author_email='omermuratyildirim@gmail.com, cenkalti@gmail.com',
entry_points={
'console_scripts': [
'kimo = kimo.cli:main',
'kimo-server = kimo.server:main',
]
}
)