Cleaning up a bit
[ci skip]
This commit is contained in:
parent
b0c7b74e3b
commit
4327ff30df
3 changed files with 7 additions and 12 deletions
|
|
@ -5,6 +5,7 @@ History
|
||||||
|
|
||||||
2.10.1 (2013-05-29)
|
2.10.1 (2013-05-29)
|
||||||
++++++++++++++++++
|
++++++++++++++++++
|
||||||
|
|
||||||
- More test coverage!
|
- More test coverage!
|
||||||
- Fix ``search_gen``
|
- Fix ``search_gen``
|
||||||
- Fixed ``get_lastfunction_header`` to actually do what its docstring says, returns ``None`` if header is not found
|
- Fixed ``get_lastfunction_header`` to actually do what its docstring says, returns ``None`` if header is not found
|
||||||
|
|
@ -16,6 +17,7 @@ History
|
||||||
|
|
||||||
2.10.0 (2013-05-21)
|
2.10.0 (2013-05-21)
|
||||||
++++++++++++++++++
|
++++++++++++++++++
|
||||||
|
|
||||||
- Added ``get_retweeters_ids`` method
|
- Added ``get_retweeters_ids`` method
|
||||||
- Fixed ``TwythonDeprecationWarning`` on camelCase functions if the camelCase was the same as the PEP8 function (i.e. ``Twython.retweet`` did not change)
|
- Fixed ``TwythonDeprecationWarning`` on camelCase functions if the camelCase was the same as the PEP8 function (i.e. ``Twython.retweet`` did not change)
|
||||||
- Fixed error message bubbling when error message returned from Twitter was not an array (i.e. if you try to retweet something twice, the error is not found at index 0)
|
- Fixed error message bubbling when error message returned from Twitter was not an array (i.e. if you try to retweet something twice, the error is not found at index 0)
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
include LICENSE README.rst HISTORY.rst test_twython.py requirements.txt
|
include README.rst HISTORY.rst LICENSE
|
||||||
15
setup.py
15
setup.py
|
|
@ -18,26 +18,19 @@ if sys.argv[-1] == 'publish':
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
# Basic package information.
|
|
||||||
name='twython',
|
name='twython',
|
||||||
version=__version__,
|
version=__version__,
|
||||||
packages=packages,
|
|
||||||
|
|
||||||
# Packaging options.
|
|
||||||
include_package_data=True,
|
|
||||||
|
|
||||||
# Package dependencies.
|
|
||||||
install_requires=['requests==1.2.2', 'requests_oauthlib==0.3.2'],
|
install_requires=['requests==1.2.2', 'requests_oauthlib==0.3.2'],
|
||||||
|
|
||||||
# Metadata for PyPI.
|
|
||||||
author='Ryan McGrath',
|
author='Ryan McGrath',
|
||||||
author_email='ryan@venodesigns.net',
|
author_email='ryan@venodesigns.net',
|
||||||
license='MIT License',
|
license=open('LICENSE').read(),
|
||||||
url='http://github.com/ryanmcgrath/twython/tree/master',
|
url='https://github.com/ryanmcgrath/twython/tree/master',
|
||||||
keywords='twitter search api tweet twython stream',
|
keywords='twitter search api tweet twython stream',
|
||||||
description='Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs',
|
description='Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs',
|
||||||
long_description=open('README.rst').read() + '\n\n' +
|
long_description=open('README.rst').read() + '\n\n' +
|
||||||
open('HISTORY.rst').read(),
|
open('HISTORY.rst').read(),
|
||||||
|
include_package_data=True,
|
||||||
|
packages=packages,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue