forked from afroisalreadyinu/stashpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 1.1 KB
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
import os
from setuptools import setup
dependencies = ['parse>=1.6',
'tornado<4.3',
'pyyaml>=3.0',
'pytz>=2016',
'python-dateutil>=2.5',
'regex>=2016']
test_dependencies = ['nose2>=0.6', 'matplotlib>=1.5']
setup(
name = "stashpy",
version = "0.2.1",
author = "Ulas Tuerkmen",
author_email = "ulas.tuerkmen@gmail.com",
description = ("Python 3 alternative to Logstash"),
install_requires = dependencies,
tests_require = test_dependencies,
packages=['stashpy'],
package_data={'stashpy': ['patterns/grok_patterns.txt']},
entry_points = {
'console_scripts': ['stashpy = stashpy.main:run']
},
url = "https://github.com/afroisalreadyinu/stashpy",
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords = 'logging elasticsearch kibana monitoring',
)