forked from BrightcoveOS/Diamond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·79 lines (69 loc) · 2.41 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
import os
from glob import glob
import platform
if os.environ.get('USE_SETUPTOOLS'):
from setuptools import setup
setup_kwargs = dict(zip_safe=0)
else:
from distutils.core import setup
setup_kwargs = dict()
data_files = [
('share/diamond', ['LICENSE', 'README.md']),
('share/diamond/user_scripts', []),
]
if os.getenv('VIRTUAL_ENV', False):
data_files.append(('etc/diamond',
glob('conf/*.conf.*')))
data_files.append(('etc/diamond/collectors',
glob('conf/collectors/*')))
else:
data_files.append(('/etc/diamond',
glob('conf/*.conf.*')))
data_files.append(('/etc/diamond/collectors',
glob('conf/collectors/*')))
if platform.dist()[0] == 'Ubuntu':
data_files.append(('/etc/init',
['debian/upstart/diamond.conf']))
if platform.dist()[0] in ['centos', 'redhat']:
data_files.append(('/etc/init.d',
['bin/init.d/diamond']))
data_files.append(('/var/log/diamond',
['.keep']))
if platform.dist()[1].split('.')[0] >= '6':
data_files.append(('/etc/init',
['rpm/upstart/diamond.conf']))
def pkgPath(root, path, rpath="/"):
global data_files
if not os.path.exists(path):
return
files = []
for spath in os.listdir(path):
subpath = os.path.join(path, spath)
spath = os.path.join(rpath, spath)
if os.path.isfile(subpath):
files.append(subpath)
data_files.append((root + rpath, files))
for spath in os.listdir(path):
subpath = os.path.join(path, spath)
spath = os.path.join(rpath, spath)
if os.path.isdir(subpath):
pkgPath(root, subpath, spath)
pkgPath('share/diamond/collectors', 'src/collectors')
setup(
name='diamond',
version='3.0.2',
url='https://github.com/BrightcoveOS/Diamond',
author='The Diamond Team',
author_email='https://github.com/BrightcoveOS/Diamond',
license='MIT License',
description='Smart data producer for graphite graphing package',
package_dir={'': 'src'},
packages=['diamond', 'diamond.handler'],
scripts=['bin/diamond', 'bin/diamond-setup'],
data_files=data_files,
install_requires=[
'python-configobj', 'psutil', ],
#test_suite='test.main',
** setup_kwargs
)