-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (40 loc) · 1.4 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
import os
from codecs import open
from setuptools import find_packages, setup
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
VERSION = __import__('journald_exporter_plugins').__version__
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='prometheus-journald-exporter-plugins',
version=VERSION,
description='Plugins for Prometheus Journald Exporter.',
long_description=readme(),
url='https://github.com/moccu/prometheus-journald-exporter-plugins',
project_urls={
'Bug Reports': 'https://github.com/moccu/prometheus-journald-exporter-plugins/issues',
'Source': 'https://github.com/moccu/prometheus-journald-exporter-plugins',
},
author='Andreas Hug',
author_email='[email protected]',
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=[
'prometheus-client',
'python-dateutil',
'pytz',
],
extras_require={},
include_package_data=True,
keywords='prometheus metrics journald logs',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)