-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support all the latest and greatest protocol features Async buffer with disk persistence
- Loading branch information
Showing
3 changed files
with
50 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,49 @@ | ||
[metadata] | ||
name = fluent-logger | ||
version = 1.0.0dev0 | ||
description = A Python logging handler for FluentD event collector | ||
author = Kazuki Ohta | ||
author_email= [email protected] | ||
maintainer = Arcadiy Ivanov | ||
maintainer_email = [email protected] | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst; charset=UTF-8 | ||
license = Apache License, Version 2.0 | ||
keywords = fluentd logging logger python | ||
url = https://github.com/fluent/fluent-logger-python/ | ||
download_url = https://pypi.org/project/fluent-logger/ | ||
project_urls = | ||
Bug Tracker = https://github.com/fluent/fluent-logger-python/issues | ||
Source Code = https://github.com/fluent/fluent-logger-python/ | ||
Documentation = https://github.com/fluent/fluent-logger-python | ||
classifiers = | ||
License :: OSI Approved :: Apache Software License | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Programming Language :: Python :: Implementation :: PyPy | ||
Development Status :: 5 - Production/Stable | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
Topic :: System :: Logging | ||
Intended Audience :: Developers | ||
|
||
[options] | ||
zip_safe = True | ||
install_requires= | ||
msgpack | ||
packages = | ||
fluent | ||
package_dir = | ||
fluent = fluent | ||
include_package_data = True | ||
python_requires = >=3.5,<3.9 | ||
test_suite = tests | ||
|
||
[nosetests] | ||
match = ^test_ | ||
cover-package = fluent | ||
|
@@ -6,5 +52,3 @@ cover-erase = 1 | |
cover-branches = 1 | ||
cover-inclusive = 1 | ||
cover-min-percentage = 70 | ||
[bdist_wheel] | ||
universal = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,5 @@ | ||
#!/usr/bin/python | ||
#!/usr/bin/env python | ||
|
||
from os import path | ||
from setuptools import setup | ||
|
||
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.4', | ||
description=desc, | ||
long_description=open(README).read(), | ||
package_dir={'fluent': 'fluent'}, | ||
packages=['fluent'], | ||
install_requires=['msgpack'], | ||
author='Kazuki Ohta', | ||
author_email='[email protected]', | ||
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.9", | ||
test_suite='tests' | ||
) | ||
setup() |