-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (46 loc) · 1.64 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
49
50
51
from setuptools import setup
test_require = ['pytest']
with open('requirements.txt') as f:
reqs = [l.strip() for l in f if not any(l.startswith(t) for t in test_require)]
with open('README.md', 'r') as f:
long_desc = f.read()
version = "0.0.7"
setup(
name='alom_exporter',
description='Prometheus exporter for Sun ALOM statistics',
long_description=long_desc,
long_description_content_type="text/markdown",
version=version,
install_requires=reqs,
tests_require=test_require,
packages=['alom'],
py_modules=[],
entry_points={
'console_scripts': [
'alom_exporter = alom.metrics:main'
]
},
python_requires='>=3.6',
author='delucks',
author_email='[email protected]',
license='GPLv3',
url='https://github.com/delucks/alom_exporter',
download_url=f'https://github.com/delucks/alom_exporter/tarball/{version}',
keywords=['prometheus', 'sun', 'oracle', 'sparc', 'alom', 'prometheus exporter'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
'Programming Language :: Python :: 3 :: Only',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
]
)