-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 1002 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (30 loc) · 1002 Bytes
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
#! /usr/bin/env python
from setuptools import setup, find_packages
try:
with file('README.rst') as f:
long_desc = f.read()
except:
long_desc = ''
setup(
name = "Python-Syslog",
version = "1.0.dev",
packages = find_packages(),
author = "Giles Antonio Radford",
author_email = "moof@metamoof.net",
description = "An RFC5424-Compliant Syslog Handler for the Python Logging Framework",
license = "MIT",
keywords = ["syslog", "logging",],
url = "https://github.com/metamoof/python-syslog",
test_suite = "syslog.test_syslog",
long_description = long_desc,
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Logging",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
)