forked from zach-taylor/splunk_handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1013 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
from setuptools import setup
setup(
name='splunk_handler',
version='2.0.7',
license='MIT License',
description='A Python logging handler that sends your logs to Splunk',
long_description=open('README.md').read(),
author='Zach Taylor',
author_email='ztaylor234@gmail.com',
url='https://github.com/zach-taylor/splunk_handler',
packages=['splunk_handler'],
install_requires=['requests >= 2.6.0, < 3.0.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Logging'
]
)