-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (56 loc) · 2.11 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Exec mongotime/version.py to load __version__ into global namespace. For
# reasons and alt, see:
# https://packaging.python.org/guides/single-sourcing-package-version/
exec(open(path.join(here, 'mongotime', 'version.py')).read())
LONG_DESC = '''
Mongotime is a sampling-based performance analysis tool for MongoDB that aims
to give you a deep view into how Mongo is spending its time by showing %
utilization of various activity types, and allowing you to add custom grouping
and filtering.
This approach is particularly useful if your DB is strained by a high volume of
fast queries, rather than a few slow ones. Besides optimizing slow queries, you
might want to understand and change general access patterns. For example, maybe
your DB is spending way too much time looking up a user's last login time, even
if each lookup is very fast because of indexing.
'''
setup(
name='mongotime',
version=__version__, # noqa
description=(
'Sampling Profiler for Mongo DB - see what the DB spends time on'),
url='http://github.com/heewa/mongotime',
download_url='https://github.com/heewa/mongotime/archive/v0.1.0.tar.gz',
author='Heewa Barfchin',
author_email='[email protected]',
license='MIT',
packages=['mongotime'],
entry_points={
'console_scripts': [
'mongotime=mongotime.app:run',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Topic :: Database',
'Topic :: System',
'Topic :: System :: Benchmark',
'Topic :: System :: Monitoring',
],
keywords='mongo mongodb database db perf performance profile profiler',
install_requires=[
'click>=6.7,<7',
'pymongo>=3.6.0,<4',
],
tests_require=[
'pytest',
'tox',
],
long_description=LONG_DESC)