wglass/collectd-haproxy

View on GitHub
setup.py

Summary

Maintainability
A
0 mins
Test Coverage
from setuptools import setup, find_packages

from collectd_haproxy import __version__


classifiers = []
with open("classifiers.txt") as fd:
    classifiers = fd.readlines()


setup(
    name="collectd-haproxy",
    version=__version__,
    description="HAProxy stats plugin for collectd.",
    author="William Glass",
    author_email="william.glass@gmail.com",
    url="http://github.com/wglass/collectd-haproxy",
    license="MIT",
    classifiers=classifiers,
    packages=find_packages(exclude=["tests", "tests.*"]),
    include_package_data=True,
    install_requires=[],
    tests_require=[
        "pytest",
        "pytest-cov",
        "mock",
        "flake8>=3.0.0",
    ],
)