-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 759 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 759 Bytes
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
from distutils.core import setup
from zibrato import __version__
setup(
name='Zibrato',
version=__version__,
author='Rob Martin @version2beta',
author_email='rob@version2beta.com',
packages=['zibrato', 'zibrato.tests'],
scripts=[],
url='http://pypi.python.org/pypi/zibrato/',
license='LICENSE.txt',
description='Send metrics to Librato via ZeroMQ.',
long_description=open('README.rst').read(),
install_requires=[
'pyzmq',
'fuzzywuzzy',
'requests',
'simplejson',
],
package_data={
'': ['*.dist'],
},
entry_points = {
'console_scripts': [
'zibrato-broker = zibrato.backend:main',
'zibrato-librato = zibrato.librato:main',
]
}
)