-
Notifications
You must be signed in to change notification settings - Fork 395
/
setup.py
37 lines (33 loc) · 1.27 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
from os.path import join, dirname
from setuptools import setup, find_packages
__version__ = open(join(dirname(__file__), 'slackbot/VERSION')).read().strip()
install_requires = (
'requests>=2.4.0',
'websocket-client>=0.22.0,<=1.6',
'slacker>=0.9.50',
'six>=1.10.0'
) # yapf: disable
excludes = (
'*test*',
'*local_settings*',
) # yapf: disable
setup(name='slackbot',
version=__version__,
license='MIT',
description='A simple chat bot for Slack',
author='Shuai Lin',
author_email='[email protected]',
url='http://github.com/lins05/slackbot',
platforms=['Any'],
packages=find_packages(exclude=excludes),
install_requires=install_requires,
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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'])