forked from jonmbake/askbot-slack
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (24 loc) · 895 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
from setuptools import setup
setup(
name="askbot-slack",
version="0.4.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
py_modules=['askbot_slack'],
install_requires=['askbot', 'requests'],
author="Jon Bake",
author_email="jonmbake@gmail.com",
description="Simple Slack integration for Askbot.",
long_description="When questions are created, edited or responded to in Askbot a message is sent to a specified channel in Slack.",
license="MIT",
keywords="askbot slack integration",
url="https://github.com/jonmbake/askbot-slack",
include_package_data=True,
zip_safe=False,
)