X Tutup
#!/usr/bin/python from os import path try: from setuptools import setup except ImportError: from distutils.core import setup README = path.abspath(path.join(path.dirname(__file__), 'README.rst')) desc = 'A Python logging handler for Fluentd event collector' setup( name='fluent-logger', version='0.9.3', description=desc, long_description=open(README).read(), package_dir={'fluent': 'fluent'}, packages=['fluent'], install_requires=['msgpack'], author='Kazuki Ohta', author_email='kazuki.ohta@gmail.com', url='https://github.com/fluent/fluent-logger-python', download_url='http://pypi.python.org/pypi/fluent-logger/', license='Apache License, Version 2.0', classifiers=[ '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', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Development Status :: 5 - Production/Stable', 'Topic :: System :: Logging', 'Intended Audience :: Developers', ], python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,<3.8", test_suite='tests' )
X Tutup