-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (30 loc) · 862 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
34
#!/usr/bin/env python
# -*- encodig: utf-8 -*-
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='blackbird-rabbitmq',
version='0.1.5',
description=(
'Get monitorring stats of rabbitmq for blackbird '
),
long_description=read('PROJECT.txt'),
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
],
author='makocchi',
author_email='makocchi@gmail.com',
url='https://github.com/Vagrants/blackbird-rabbitmq',
data_files=[
('/opt/blackbird/plugins', ['rabbitmq.py']),
('/etc/blackbird/conf.d', ['rabbitmq.cfg'])
],
test_suite='tests',
)