Skip to content

Commit ad58267

Browse files
author
Itai Bar Sinai
committed
hopefully temporary changes to readme and setup to use package on our own
1 parent 6130d68 commit ad58267

File tree

2 files changed

+32
-30
lines changed

2 files changed

+32
-30
lines changed

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ log forwarding, etc.
2121
**fluent-logger-python** is a Python library, to record the events from
2222
Python application.
2323

24+
NOTE: This is a fork of https://github.com/fluent/fluent-logger-python, it only
25+
adds TLS capability to the original package.
26+
2427
Requirements
2528
------------
2629

@@ -36,7 +39,7 @@ execute the following command to install it.
3639

3740
.. code:: sh
3841
39-
$ pip install fluent-logger
42+
$ pip install mona-fluent-logger
4043
4144
Configuration
4245
-------------

setup.py

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -11,32 +11,31 @@
1111
desc = 'A Python logging handler for Fluentd event collector'
1212

1313
setup(
14-
name='fluent-logger',
15-
version='0.9.3',
16-
description=desc,
17-
long_description=open(README).read(),
18-
package_dir={'fluent': 'fluent'},
19-
packages=['fluent'],
20-
install_requires=['msgpack'],
21-
author='Kazuki Ohta',
22-
author_email='kazuki.ohta@gmail.com',
23-
url='https://github.com/fluent/fluent-logger-python',
24-
download_url='http://pypi.python.org/pypi/fluent-logger/',
25-
license='Apache License, Version 2.0',
26-
classifiers=[
27-
'Programming Language :: Python :: 2',
28-
'Programming Language :: Python :: 2.7',
29-
'Programming Language :: Python :: 3',
30-
'Programming Language :: Python :: 3.4',
31-
'Programming Language :: Python :: 3.5',
32-
'Programming Language :: Python :: 3.6',
33-
'Programming Language :: Python :: 3.7',
34-
'Programming Language :: Python :: Implementation :: CPython',
35-
'Programming Language :: Python :: Implementation :: PyPy',
36-
'Development Status :: 5 - Production/Stable',
37-
'Topic :: System :: Logging',
38-
'Intended Audience :: Developers',
39-
],
40-
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,<3.8",
41-
test_suite='tests'
42-
)
14+
name='mona-fluent-logger',
15+
version='0.0.1',
16+
description=desc,
17+
long_description=open(README).read(),
18+
package_dir={'fluent': 'fluent'},
19+
packages=['fluent'],
20+
install_requires=['msgpack'],
21+
author='itaiMona',
22+
author_email='itai@monalabs.io',
23+
url='https://github.com/itaiMona/fluent-logger-python',
24+
download_url='http://pypi.python.org/pypi/mona-fluent-logger/',
25+
license='Apache License, Version 2.0',
26+
classifiers=[
27+
'Programming Language :: Python :: 2',
28+
'Programming Language :: Python :: 2.7',
29+
'Programming Language :: Python :: 3',
30+
'Programming Language :: Python :: 3.4',
31+
'Programming Language :: Python :: 3.5',
32+
'Programming Language :: Python :: 3.6',
33+
'Programming Language :: Python :: 3.7',
34+
'Programming Language :: Python :: Implementation :: CPython',
35+
'Programming Language :: Python :: Implementation :: PyPy',
36+
'Development Status :: 5 - Production/Stable',
37+
'Topic :: System :: Logging',
38+
'Intended Audience :: Developers',
39+
],
40+
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,<3.8",
41+
test_suite='tests')

0 commit comments

Comments
 (0)