-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
29 lines (28 loc) · 1.04 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
from setuptools import setup
setup(
name='splunk_handler',
version='3.0.0',
license='MIT License',
description='A Python logging handler that sends your logs to Splunk',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Zach Taylor',
author_email='[email protected]',
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 :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: System :: Logging'
]
)