Skip to content
This repository has been archived by the owner on Jul 2, 2019. It is now read-only.

Commit

Permalink
added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lins05 committed Feb 19, 2015
1 parent 2096793 commit 208764e
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@
*.swp
#*
local_settings.py
/build
/dist
/*.egg-info
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from setuptools import setup, find_packages

__version__ = '0.1.0'

install_requires = (
'requests'
'websocket-client',
'importlib',
'slacker',
)

excludes = (
'*test*',
'*local_settings*',
)

setup(name='slackbot',
version=__version__,
license='BSD',
description='A simpile 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 :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
)

0 comments on commit 208764e

Please sign in to comment.