-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
45 lines (43 loc) · 1.56 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
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.rst') as changelog_file:
changelog = changelog_file.read()
setup(
name='rfc5424-logging-handler',
version='1.4.3',
packages=find_packages(exclude=["test"]),
author='Joris Beckers',
author_email='[email protected]',
url="https://github.com/jobec/rfc5424-logging-handler",
download_url="https://pypi.python.org/pypi/rfc5424-logging-handler",
description='An up-to-date, RFC5424-Compliant syslog handler for the Python logging framework',
long_description=readme + '\n\n' + changelog,
license="BSD",
keywords='python logging handler syslog rfc5424',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
'Development Status :: 5 - Production/Stable',
],
install_requires=[
'tzlocal',
'pytz',
],
tests_require=[
'pytest',
'mock',
],
zip_safe=False,
)