Repository URL to install this package:
|
Version:
0.1.11 ▾
|
python-json-logger
/
setup.py
|
|---|
from setuptools import setup, find_packages
setup(
name="python-json-logger",
version="0.1.11",
url="http://github.com/madzak/python-json-logger",
license="BSD",
description="A python library adding a json log formatter",
author="Zakaria Zajac",
author_email="zak@madzak.com",
package_dir={'': 'src'},
packages=find_packages("src", exclude="tests"),
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires='>=2.7',
test_suite="tests.tests",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Logging',
]
)