forked from aelse/slackard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.03 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
from setuptools import setup
import os.path
__dir__ = os.path.dirname(os.path.abspath(__file__))
setup(
name='slackard',
license='BSD',
py_modules=['slackard'],
version='2.0.0',
install_requires=['PyYAML', 'requests', 'slacker'],
description='A pluggable bot for slack.com',
long_description='See https://github.com/aelse/slackard',
author='Alexander Else',
author_email='[email protected]',
url='https://github.com/aelse/slackard',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Communications :: Chat",
"Topic :: Office/Business :: Groupware",
],
entry_points={
'console_scripts': ['slackard=slackard:main'],
}
)