-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 836 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="slackhandler",
version="0.1.2",
packages=find_packages(),
install_requires=(),
author="James Perez",
author_email="[email protected]",
description="Extends Python's base logging Handler to emit logs to Slack",
long_description="Extends Python's base logging Handler to emit logs to Slack via an Incoming Webhook",
url="https://github.com/jperezlatimes/SlackHandler/",
license="GNU GENERAL PUBLIC LICENSE",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Topic :: Communications :: Chat',
'Topic :: System :: Logging',
]
)