-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (32 loc) · 1.08 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
from setuptools import setup
from setuptools import find_packages
from temlogger import __version__
from temlogger import __license__
with open('README.rst', 'r') as fh:
long_description = fh.read()
setup(
name='temlogger',
version=__version__,
license=__license__,
author='Nielson Santana',
author_email='[email protected]',
description='Python logging handler for Logstash and StackDriver.',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/tembici/temlogger',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
],
install_requires=[
'google-cloud-logging>=1.14.0,<2',
'python3-logstash==0.4.80'
]
)