-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (20 loc) · 944 Bytes
/
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
# Copyright (C) 2005 Graham Ashton <[email protected]>
#
# $Id: setup.py,v 1.3 2006/02/13 01:53:56 ashtong Exp $
from distutils.core import setup
import netsyslog
if __name__ == "__main__":
setup(py_modules=["netsyslog"],
name="netsyslog",
version=netsyslog.__version__,
author="Graham Ashton",
author_email="[email protected]",
url="http://hacksaw.sourceforge.net/netsyslog/",
description="Send log messages to remote syslog servers",
long_description="""netsyslog is a Python module that enables
you to construct syslog messages and send them (via UDP) to a
remote syslog server. Unlike other syslog modules it allows you
to set the metadata (e.g. time, host name, program name, etc.)
yourself, giving you full control over the contents of the UDP
packets that it creates.""",
)