Menu

[70c731]: / setup.py  Maximize  Restore  History

Download this file

16 lines (13 with data), 519 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
from distutils.core import setup
setup(
name='collectd-csv',
version='0.6',
author='Ville Petteri Tolonen',
author_email='petteri.tolonen@gmail.com',
packages=['CollectD_CSV', 'CollectD_CSV/plugins'],
scripts=['bin/fetchCSV.py','bin/monitorCSV.py'],
url='http://pypi.python.org/pypi/collectd-csv',
license='FreeBSD',
description='Fetch collectd CSV data matching the given parameters.',
long_description=open('README.txt').read()
)