Skip to content

Commit 8af9afa

Browse files
committed
updated minor version
1 parent 1797492 commit 8af9afa

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

setup.py

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -7,37 +7,37 @@
77
except ImportError:
88
from distutils.core import setup
99

10-
README = path.abspath(path.join(path.dirname(__file__), 'README.rst'))
11-
desc = 'A Python logging handler for Fluentd event collector'
10+
README = path.abspath(path.join(path.dirname(__file__), "README.rst"))
11+
desc = "A Python logging handler for Fluentd event collector"
1212

1313
setup(
14-
name='fluent-logger',
15-
version='0.10.0',
16-
description=desc,
17-
long_description=open(README).read(),
18-
package_dir={'fluent': 'fluent'},
19-
packages=['fluent'],
20-
install_requires=['msgpack>1.0'],
21-
author='Kazuki Ohta',
22-
author_email='kazuki.ohta@gmail.com',
23-
maintainer='Arcadiy Ivanov',
24-
maintainer_email='arcadiy@ivanov.biz',
25-
url='https://github.com/fluent/fluent-logger-python',
26-
download_url='https://pypi.org/project/fluent-logger/',
27-
license='Apache License, Version 2.0',
28-
classifiers=[
29-
'Programming Language :: Python :: 3',
30-
'Programming Language :: Python :: 3.5',
31-
'Programming Language :: Python :: 3.6',
32-
'Programming Language :: Python :: 3.7',
33-
'Programming Language :: Python :: 3.8',
34-
'Programming Language :: Python :: 3.9',
35-
'Programming Language :: Python :: Implementation :: CPython',
36-
'Programming Language :: Python :: Implementation :: PyPy',
37-
'Development Status :: 5 - Production/Stable',
38-
'Topic :: System :: Logging',
39-
'Intended Audience :: Developers',
40-
],
41-
python_requires='>=3.5',
42-
test_suite='tests'
14+
name="fluent-logger",
15+
version="0.10.2",
16+
description=desc,
17+
long_description=open(README).read(),
18+
package_dir={"fluent": "fluent"},
19+
packages=["fluent"],
20+
install_requires=["msgpack>1.0"],
21+
author="Kazuki Ohta",
22+
author_email="kazuki.ohta@gmail.com",
23+
maintainer="Arcadiy Ivanov",
24+
maintainer_email="arcadiy@ivanov.biz",
25+
url="https://github.com/fluent/fluent-logger-python",
26+
download_url="https://pypi.org/project/fluent-logger/",
27+
license="Apache License, Version 2.0",
28+
classifiers=[
29+
"Programming Language :: Python :: 3",
30+
"Programming Language :: Python :: 3.5",
31+
"Programming Language :: Python :: 3.6",
32+
"Programming Language :: Python :: 3.7",
33+
"Programming Language :: Python :: 3.8",
34+
"Programming Language :: Python :: 3.9",
35+
"Programming Language :: Python :: Implementation :: CPython",
36+
"Programming Language :: Python :: Implementation :: PyPy",
37+
"Development Status :: 5 - Production/Stable",
38+
"Topic :: System :: Logging",
39+
"Intended Audience :: Developers",
40+
],
41+
python_requires=">=3.5",
42+
test_suite="tests",
4343
)

0 commit comments

Comments
 (0)