-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1006 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
29
30
31
32
33
#!/usr/bin/env python
import io
from os.path import join, dirname, abspath
from setuptools import setup
def read(name):
here = abspath(dirname(__file__))
return io.open(
join(here, name), encoding='utf8'
).read()
setup(
name='diamond-ifcbondcollector',
version='2.0.1',
author='Onet - HW Platforms KRK',
author_email='hw-support@dreamlab.pl',
description='Diamond collector for bonding status',
py_modules=['src/ifcbondcollector'],
data_files=[
(r'/etc/sudoers.d/', ['conf/lldpctl']),
(r'/etc/diamond/collectors/', ['conf/IFCBondCollector.conf']),
(r'/usr/share/diamond/collectors/ifcbondcollector/', ['src/ifcbondcollector.py'])
],
install_requires=read('requirements.txt').split('\n'),
include_package_data=True,
keywords=[
'diamond', 'collector', 'bonding', 'network', 'interfaces'
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
],
)