This repository has been archived by the owner on Feb 24, 2020. It is now read-only.
forked from phobos182/collectd-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
46 lines (37 loc) · 1.38 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
import os
from setuptools import setup
def pkg_dir(path):
return os.path.join(os.path.dirname(__file__), path)
with open(pkg_dir('VERSION'), 'r') as f:
version = f.read().strip()
with open(pkg_dir('README.md'), 'r') as f:
readme = f.read()
setup(
name='elasticsearch-collectd-plugin',
version=version,
install_requires=[],
py_modules=['elasticsearch-collectd'],
author='',
author_email='[email protected]',
maintainer='MOJDS',
url='https://github.com/ministryofjustice/elasticsearch-collectd-plugin',
description='Collectd plugin to query stats from elasticsearch',
long_description=readme,
license='LICENSE',
keywords=['python', 'ministryofjustice', 'collectd', 'elasticsearch'],
test_suite='tests',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 1 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
'Topic :: System :: Networking :: Time Synchronization']
)