forked from wglass/collectd-haproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 688 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 688 Bytes
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
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",
],
)