-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/transport_http
- Loading branch information
Showing
5 changed files
with
20 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ language: python | |
cache: pip | ||
|
||
python: | ||
- "2.7" | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
|
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
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
import sys | ||
|
||
NAME = 'python-logstash-async' | ||
VERSION = '1.6.6' | ||
VERSION = '2.0.0' | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
with open(path.join(here, 'README.rst'), 'rb') as f: | ||
|
@@ -30,6 +30,7 @@ | |
version=VERSION, | ||
description='Asynchronous Python logging handler for Logstash.', | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/x-rst', | ||
license='MIT', | ||
author='Enrico Tröger', | ||
author_email='[email protected]', | ||
|
@@ -41,14 +42,14 @@ | |
}, | ||
keywords='logging logstash asynchronous', | ||
install_requires=['limits', 'pylogbeat', 'six', 'requests'], | ||
python_requires='>3.5', | ||
include_package_data=True, | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Internet :: WWW/HTTP', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
|
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