forked from ulule/python-logstash-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 969 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
import codecs
from setuptools import setup, find_packages
from os import path
def read(*parts):
return codecs.open(path.join(path.dirname(__file__), *parts),
encoding="utf-8").read()
setup(name='logstash-formatter',
version='1.0.3',
description='JSON formatter meant for logstash',
long_description=read('README.rst'),
url='https://github.com/exoscale/python-logstash-formatter',
author='Pierre-Yves Ritschard',
author_email='[email protected]',
license='MIT, see LICENSE file',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
zip_safe=False)