|
1 | | -from setuptools import setup |
| 1 | +from setuptools import setup, find_packages |
2 | 2 |
|
3 | 3 | setup( |
4 | 4 | name="json-logging", |
5 | | - version='0.0.1', |
6 | | - packages=['json_logging'], |
| 5 | + version='1.0.0', |
| 6 | + packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'example', 'dist', 'build']), |
| 7 | + license='Apache License 2.0', |
7 | 8 | description="JSON Python Logging", |
8 | 9 | long_description=open('README.md').read(), |
9 | 10 | author="Bui Nguyen Thang (Bob)", |
10 | | - author_email="thang.bn@live.com", |
11 | | - keywords=["json", "python", "logging", "request instrumentation"], |
| 11 | + author_email="bob.bui@outlook.com", |
| 12 | + keywords=["json", "elastic", "python", "python3", "python2", "logging", "logging-library", "json", "elasticsearch", |
| 13 | + "elk", "elk-stack", "logstash", "kibana"], |
12 | 14 | platforms='any', |
13 | 15 | url="https://github.com/thangbn/json-logging", |
| 16 | + python_requires='>=2.6, >=3.2', |
14 | 17 | classifiers=[ |
15 | | - 'Development Status :: 3 - Alpha', |
| 18 | + 'Development Status :: 5 - Production/Stable', |
16 | 19 | 'Intended Audience :: Developers', |
17 | 20 | 'License :: OSI Approved :: Apache Software License', |
18 | 21 | 'Operating System :: OS Independent', |
|
0 commit comments