-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
setup.py
36 lines (33 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import io
import sys
from setuptools import setup, find_packages
version_info_major = sys.version_info[0]
if version_info_major == 3:
long_description = open('README.rst', encoding="utf8").read()
else:
io_open = io.open('README.rst', encoding="utf8")
long_description = io_open.read()
setup(
name="json-logging",
version='1.5.0-rc0',
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'example', 'dist', 'build']),
license='Apache License 2.0',
description="JSON Python Logging",
long_description=long_description,
author="Bob T.",
keywords=["json", "elastic", "python", "python3", "python2", "logging", "logging-library", "json", "elasticsearch",
"elk", "elk-stack", "logstash", "kibana"],
platforms='any',
url="https://github.com/thangbn/json-logging",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Logging',
'Framework :: Flask',
]
)