forked from splunk/eventgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (48 loc) · 1.71 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup
from setuptools import find_packages
import splunk_eventgen
VERSION = splunk_eventgen.__version__
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
def readme():
with open('README.md') as f:
return f.read()
setup(
name='splunk_eventgen',
version=VERSION,
description='Splunk Event Generator to produce real-time, representative data',
long_description=long_description,
author='Splunk, Inc.',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7'],
keywords='splunk eventgen container containers docker automation',
entry_points={'console_scripts': ["splunk_eventgen = splunk_eventgen.__main__:main"]},
include_package_data=True,
packages=find_packages(),
package_data={"splunk_eventgen": ['*.sh', '*.txt', '*.yml'], '': ['*.sh', '*.txt', '*.yml']},
install_requires=[
'pytest>=3.0.0', # Required to test functional tests in eventgen.
'boto3',
'requests>=2.18.4',
'requests[security]',
'logutils>=0.3.4.1',
'futures>=3.0.5',
'ujson>=1.35', # way faster implementation of JSON processing
'pyyaml',
'httplib2',
'jinja2',
'pyrabbit==1.1.0'
]
)