-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 832 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
from setuptools import setup
from digest import __version__
setup(
name='query-digest',
version=__version__,
description='Reports queries issued by a given MediaWiki feature / Pandora service / Backend script',
url='https://github.com/macbre/query-digest',
author='Maciej Brencz',
author_email='maciej.brencz@gmail.com',
install_requires=[
'docopt==0.6.2',
'tabulate==0.8.2',
'elasticsearch-query==2.3.0',
'sql_metadata==1.5.0',
],
extras_require={
'dev': [
'coverage==4.5.2',
'pylint>=1.9.2, <=2.1.1', # 2.x branch is for Python 3
'pytest==4.0.0',
]
},
include_package_data=True,
entry_points={
'console_scripts': [
'query_digest=scripts.query_digest:main'
],
}
)