forked from offensity/python-logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (24 loc) · 867 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
from distutils.core import setup
setup(
name='python-logstash-nested',
packages=['logstash'],
version='0.5.1',
description='Python logging handler for Logstash.',
long_description=open('README.rst').read(),
license='MIT',
author='Volodymyr Klochan',
author_email='[email protected]',
url='https://github.com/offensity/python-logstash',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
]
)