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

Commit

Permalink
Increse version number to 0.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
os committed Sep 11, 2014
1 parent 7d9a4c8 commit baa097f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
from setuptools import setup

import slacker

setup(name='slacker',
version='0.3.0',

setup(name=slacker.__title__,
version=slacker.__version__,
packages=['slacker'],
description='Slack API client',
author='Oktay Sancak',
author=slacker.__author__,
author_email='[email protected]',
url='http://github.com/os/slacker/',
install_requires=['requests >= 2.2.1'],
license='http://www.apache.org/licenses/LICENSE-2.0',
license=slacker.__license__,
keywords='slack api')
7 changes: 7 additions & 0 deletions slacker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
import requests


__title__ = 'slacker'
__version__ = '0.3.1'
__author__ = 'Oktay Sancak'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2014 Oktay Sancak'


API_BASE_URL = 'https://slack.com/api/{api}'


Expand Down

0 comments on commit baa097f

Please sign in to comment.