-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (29 loc) · 802 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = '0.6.3'
with open('README.md') as readme:
LONG_DESCRIPTION = ''.join(readme.readlines())
setup(
name='libmetric',
version=VERSION,
description='Python library for querying metrics into Pandas DataFrames',
long_description=LONG_DESCRIPTION,
author='Aleš Komárek',
author_email='ales.komarek@newt.cz',
packages=find_packages(),
license='Apache License, Version 2.0',
url='https://github.com/cznewt/python-libmetric',
install_requires=[
'click',
'Jinja2',
'urllib3',
'requests',
'pandas',
'numpy',
'elasticsearch-dsl'
],
entry_points='''
[console_scripts]
libmetric_query=libmetric.cli:libmetric_query
''',
)