-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.3 KB
/
setup.py
File metadata and controls
36 lines (31 loc) · 1.3 KB
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
from setuptools import setup
setup(
name = "collectd",
version = "1.0.2",
py_modules = ["collectd"],
author = "Eli Courtwright",
author_email = "eli@courtwright.org",
description = "library for sending statistics over UDP to collectd servers",
license = "BSD",
url = "https://github.com/appliedsec/collectd",
download_url = "https://github.com/downloads/appliedsec/collectd/collectd-1.0.2.tar.gz",
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: System :: Networking",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
],
long_description = """\
This Python module implements the binary protocol used by the collectd Network
plugin to let you send arbitrary numeric data to collectd servers. Other than
turning on the Network plugin on the destination collectd server, no
configuration is needed."""
)