Skip to content

Commit

Permalink
bumped version to 0.1.2 in order to align with PyPI
Browse files Browse the repository at this point in the history
added a Contributors section to the readme file
added a MANIFEST.in file
  • Loading branch information
nicolaiarocci committed Jul 19, 2012
1 parent c431850 commit 0525d1a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
include readme.md
3 changes: 3 additions & 0 deletions readme.markdown → readme.md
Expand Up @@ -4,6 +4,9 @@ This module allows, with the use of python decorators, to transparently select a
## Author ##
[Nicola Iarocci](mailto:nicola@nicolaiarocci.com)

### Contributors ###
[Bruno Ripa](http://twitter.com/brunoripa)

## License ##
[MIT License](http://www.opensource.org/licenses/mit-license.php)

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -4,7 +4,7 @@

setup(
name='Flask-MimeRender',
version='0.1.1',
version='0.1.2',
description='RESTful resource variant rendering using MIME Media-Types, for the Flask Micro Web Framework',
author='Nicola Iarocci',
author_email='nicola@nicolaiarocci.com',
Expand All @@ -24,9 +24,9 @@
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],

py_modules=['flaskmimerender'],
package_dir={'':'src'},
requires=['flask'],
install_requires=['flask'],
)
)
2 changes: 1 addition & 1 deletion src/flaskmimerender.py
Expand Up @@ -4,7 +4,7 @@
(http://code.google.com/p/mimerender/)
"""

__version__ = '0.1.1'
__version__ = '0.1.2'
__author__ = 'Nicola Iarocci <nicola@nicolaiarocci.com>'
__license__ = 'MIT'
__copyright__ = '2012 Nicola Iarocci'
Expand Down

0 comments on commit 0525d1a

Please sign in to comment.