48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
import io
|
|
from setuptools import setup, find_packages
|
|
|
|
VERSION = "0.4.4"
|
|
PACKAGE_NAME = "hpilo-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 HP iLO metrics",
|
|
author="Joe Stringer",
|
|
author_email="joe.stringer@infinityworks.com",
|
|
long_description=readme(),
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/infinityworks/hpilo-exporter",
|
|
package_dir={'': SOURCE_DIR_NAME},
|
|
packages=find_packages(SOURCE_DIR_NAME, exclude=('*.tests',)),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
package_data={},
|
|
license='MIT',
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.10.10',
|
|
'Programming Language :: Python',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
],
|
|
install_requires=[
|
|
"prometheus-client",
|
|
"python-hpilo",
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'hpilo-exporter = hpilo_exporter.main:main',
|
|
],
|
|
}
|
|
)
|