-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
41 lines (29 loc) · 1006 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pysyslogclient, sys
long_description=open("README", "r").read(4096)
setup(
name="pysyslogclient",
version=pysyslogclient.version,
description='Syslog client implementation (RFC 3164/RFC 5424)',
long_description=long_description,
license='BSD-2-Clause',
url="https://github.com/aboehm/pysyslogclient",
author="Alexander Böhm",
author_email="alxndr.boehm@gmail.com",
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft',
'Topic :: System :: Logging',
'Topic :: System :: Monitoring',
],
packages=find_packages(),
keywords="syslog logging monitoring",
)
# vim: ft=python tabstop=2 shiftwidth=2 noexpandtab :