forked from friends-of-freeswitch/freeswitch-telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.11 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
#!/usr/bin/env python
# vim: tabstop=4 softtabstop=4 shiftwidth=4 textwidth=80 smarttab expandtab
"""
FreeSWITCH Telegraf Metric Collector
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
README = open('README.rst').read()
DOCLINK = """
Documentation
-------------
The full documentation is at http:///."""
setup(
name='fstelegraf',
version='0.0.1',
description='FreeSWITCH Telegraf Input Plugin',
long_description=README + '\n\n' + DOCLINK + '\n\n',
author='Moises Silva',
author_email='[email protected]',
url='https://github.com/moises-silva/freeswitch-telegraf',
packages=[
'fstelegraf',
],
install_requires=['greenswitch'],
dependency_links=[
'git+https://github.com/EvoluxBR/greenswitch.git#egg=greenswitch'
],
license='MIT',
zip_safe=False, # For easy debugging, always extract the python egg
classifiers=[
'Programming Language :: Python :: 2.7',
],
entry_points={
'console_scripts': [
'freeswitch-telegraf = fstelegraf.collector:main'
],
}
)