|
7 | 7 | except ImportError:
|
8 | 8 | from distutils.core import setup
|
9 | 9 |
|
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" |
12 | 12 |
|
13 | 13 | 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", |
43 | 43 | )
|
0 commit comments