-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (26 loc) · 887 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
28
29
from setuptools import setup
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name='json-logging-py',
version='0.2',
description='JSON / Logstash formatters for Python logging',
long_description=readme,
keywords=['json', 'logging', 'logstash'],
author='Sebastien Estienne',
author_email='[email protected]',
url='https://github.com/sebest/json-logging-py',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Operating System :: OS Independent',
],
py_modules=['jsonlogging'],
)