-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 904 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='collectd-dns_request',
version='0.1',
description="Simple Python-based plugin to report request times for "
"specific requests to specific nameservers",
author="Dan Thomson",
author_email='dan@fatmoustache.ca',
url='https://github.com/dudefellah/collectd-dns_request',
include_package_data=True,
license="GPLv3",
keywords=['collectd', 'dns', 'response_time'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
],
py_modules=['dns_request'],
)