Skip to content

Commit

Permalink
inc version
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoepp committed Jan 1, 2018
1 parent 4abd69c commit a9c7b62
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions TwitterSearch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
__title__ = 'TwitterSearch'
__version__ = '1.0.1'
__version__ = '1.0.2'
__author__ = 'Christian Koepp'
__license__ = 'MIT'
__copyright__ = 'Copyright 2013 Christian Koepp'
__copyright__ = 'Copyright 2017 Christian Koepp'

from .TwitterSearch import TwitterSearch
from .TwitterOrder import TwitterOrder
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#from TwitterSearch import __version__

def readme():
with io.open('README.rst', 'r', encoding="utf8") as f:
with io.open('README.rst', 'r', encoding='utf8') as f:
return f.read()

def requirements():
Expand All @@ -14,7 +14,7 @@ def requirements():
return req

setup(name='TwitterSearch',
version='1.0.1',
version='1.0.2',
description='A library to easily iterate tweets found by the Twitter API',
long_description=readme(),
url='http://github.com/ckoepp/TwitterSearch',
Expand All @@ -39,5 +39,5 @@ def requirements():
install_requires=requirements(),
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose>=1.0.0', 'httpretty>=0.8.4,!=0.8.7,!=0.8.8,!=0.8.6']
tests_require=['nose>=1.0.0', 'httpretty>=0.8.4']
)

0 comments on commit a9c7b62

Please sign in to comment.