-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (38 loc) · 867 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
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
import sys
import os
version = '1.0'
requires = [
'pyyaml',
'datadog',
]
test_requires = requires + [
'coverage',
'python-coveralls',
'mock',
'munch',
'nose',
]
setup(name='statsdhandler',
version=version,
description='Python logging handler for generate metrics and publish '
'to statsite',
long_description="""\
""",
classifiers=[
"Programming Language :: Python",
],
keywords='',
author='Quintagroup, Ltd.',
author_email='[email protected]',
url='',
license='',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
test_requires=test_requires,
entry_points="""
# -*- Entry points: -*-
""",
)