|
12 | 12 |
|
13 | 13 | setup(
|
14 | 14 | name='fluent-logger',
|
15 |
| - version='0.9.6', |
| 15 | + version='0.10.0', |
16 | 16 | description=desc,
|
17 | 17 | long_description=open(README).read(),
|
18 | 18 | package_dir={'fluent': 'fluent'},
|
19 | 19 | packages=['fluent'],
|
20 |
| - install_requires=['msgpack<1.0.0'], |
| 20 | + install_requires=['msgpack>1.0'], |
21 | 21 | author='Kazuki Ohta',
|
22 | 22 |
|
| 23 | + maintainer='Arcadiy Ivanov', |
| 24 | + maintainer_email='[email protected]', |
23 | 25 | url='https://github.com/fluent/fluent-logger-python',
|
24 |
| - download_url='http://pypi.python.org/pypi/fluent-logger/', |
| 26 | + download_url='https://pypi.org/project/fluent-logger/', |
25 | 27 | license='Apache License, Version 2.0',
|
26 | 28 | classifiers=[
|
27 |
| - 'Programming Language :: Python :: 2', |
28 |
| - 'Programming Language :: Python :: 2.7', |
29 | 29 | 'Programming Language :: Python :: 3',
|
30 |
| - 'Programming Language :: Python :: 3.4', |
31 | 30 | 'Programming Language :: Python :: 3.5',
|
32 | 31 | 'Programming Language :: Python :: 3.6',
|
33 | 32 | 'Programming Language :: Python :: 3.7',
|
| 33 | + 'Programming Language :: Python :: 3.8', |
| 34 | + 'Programming Language :: Python :: 3.9', |
34 | 35 | 'Programming Language :: Python :: Implementation :: CPython',
|
35 | 36 | 'Programming Language :: Python :: Implementation :: PyPy',
|
36 | 37 | 'Development Status :: 5 - Production/Stable',
|
37 | 38 | 'Topic :: System :: Logging',
|
38 | 39 | 'Intended Audience :: Developers',
|
39 | 40 | ],
|
40 |
| - python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3", |
| 41 | + python_requires='>=3.5', |
41 | 42 | test_suite='tests'
|
42 | 43 | )
|
0 commit comments