-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
60 lines (51 loc) · 2.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import sys
from setuptools import setup, find_packages
version = '1.1'
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(name='XMLLayout',
version=version,
description="Formats Python log messages as log4j XMLLayout XML",
long_description="""\
XMLLayout provides a Python logging Formatter that formats log messages as XML,
according to `log4j's XMLLayout specification
<http://jakarta.apache.org/log4j/docs/api/org/apache/log4j/xml/XMLLayout.html>`_.
XMLLayout formatted log messages can be viewed and filtered within the
`Chainsaw <http://logging.apache.org/log4j/docs/chainsaw.html>`_ application
(see the example section below), part of the Java based log4j project.
This package also includes a RawSocketHandler -- like
logging.handler.SocketHandler, but sends the raw log message over the socket
instead of a pickled version. RawSocketHandler can be configured to send log
messages to Chainsaw directly over a socket.
For example: to forward log messages to Chainsaw, if it were listening on
localhost port 4448::
import logging
import xmllayout
handler = xmllayout.RawSocketHandler('localhost', 4448)
handler.setFormatter(xmllayout.XMLLayout())
logging.root.addHandler(handler)
""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: Jython',
'Topic :: System :: Logging'
],
keywords='logging log4j',
author='Philip Jenvey',
author_email='[email protected]',
url='http://pypi.python.org/pypi/XMLLayout',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
**extra
)