forked from anti1869/riak_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.35 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
import io
from setuptools import setup, find_packages
import sys
VERSION = "0.0.3"
PACKAGE_NAME = "riak_exporter"
SOURCE_DIR_NAME = "src"
def readme():
with io.open('README.md', 'r', encoding='utf-8') as f:
return f.read()
setup(
name=PACKAGE_NAME,
version=VERSION,
description="Prometheus exporter for Riak metrics",
author="Dmitry Litvinenko",
author_email="anti1869@gmail.com",
long_description=readme(),
url="https://github.com/anti1869/riak_exporter",
package_dir={'': SOURCE_DIR_NAME},
packages=find_packages(SOURCE_DIR_NAME, exclude=('*.tests',)),
include_package_data=True,
zip_safe=False,
package_data={},
license='Apache 2',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Development Status :: 2 - Pre-Alpha',
],
install_requires=[
"tornado",
],
entry_points={
'console_scripts': [
'riak-exporter = riak_exporter.__main__:main',
],
}
)