forked from vlad-shevtsov-mev/splunk_http_handler
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (31 loc) · 1.25 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
from setuptools import setup
setup(
name='splunk_hec_handler',
version='1.2.0',
license='MIT License',
description='A Python logging handler to sends logs to Splunk using HTTP event collector (HEC)',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='vavarachen',
author_email='[email protected]',
url='https://github.com/vavarachen/splunk_hec_handler',
packages=['splunk_hec_handler'],
install_requires=['requests >= 2.6.0, < 3.0.0', 'requests'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: System :: Logging'
]
)