-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
28 lines (23 loc) · 789 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
#!/usr/bin/env python
from distutils.core import setup
import sys
if sys.version_info < (2,7):
sys.exit('Sorry, Python < 2.7 is not supported')
def readme():
with open('readme.md') as f:
return f.read()
setup(name='Splunk-HEC',
python_requires='>2.7',
version='1.81',
description='This is a python class file for use with other python scripts to send events to a Splunk http event collector.',
long_description=readme(),
author='George (starcher) Starcher',
author_email='george@georgestarcher.com',
url='https://github.com/georgestarcher/Splunk-Class-httpevent',
py_modules=['splunk_http_event_collector'],
keywords="splunk hec",
license="MIT",
install_requires=[
'requests'
],
)