forked from llimllib/limbo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (39 loc) · 1.2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Thanks to Kenneth Reitz, I stole the template for this
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
required = ['requests>=2.5', 'websocket-client==0.22.0', 'importlib>=1.0.3', 'beautifulsoup4==4.3.2']
packages = ['limbo', 'limbo.slackclient', 'limbo.plugins']
try:
longdesc = open("README.rs").read()
except:
longdesc = ''
setup(
name='limbo',
version='3.0.0a4',
description='Simple and Clean Slack Chatbot',
long_description=longdesc,
author='Bill Mill',
author_email='[email protected]',
url='https://github.com/llimllib/limbo',
packages=packages,
scripts = ['bin/limbo'],
package_data={'': ['LICENSE',], '': ['limbo/plugins/*.py']},
include_package_data=True,
install_requires=required,
license='MIT',
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
)