steadymark 0.6.0

This commit is contained in:
Gabriel Falcão 2015-11-10 13:16:10 -05:00
parent 8d0254a636
commit fdc68235e3
3 changed files with 22 additions and 20 deletions

View File

@ -1,5 +1,5 @@
# Steady Mark
> version 0.5.6
> version 0.6.0
[![Build Status](https://secure.travis-ci.org/gabrielfalcao/steadymark.png?branch=master)](http://travis-ci.org/#!/gabrielfalcao/steadymark)
[![instanc.es Badge](https://instanc.es/bin/gabrielfalcao/steadymark.png)](http://instanc.es)
![meme](http://cdn.memegenerator.net/instances/400x/24908847.jpg)
@ -69,10 +69,10 @@ $ steadymark README.md
you can tell steadymark to load a "boot" file before running the tests, it's very useful for hooking up [sure](http://falcao.it/sure) or [HTTPretty](http://falcao.it/HTTPretty)
# Steadymark is on version 0.5.6
# Steadymark is on version 0.6.0
```python
>>> from sure import expect
>>> from steadymark import version
>>> assert expect(version).should.equal("0.5.6")
>>> assert expect(version).should.equal("0.6.0")
```

View File

@ -38,23 +38,25 @@ def get_packages():
return packages
requirements = [
'misaka',
'sure'
'misaka+=2.0.0',
'sure==1.2.24',
'couleur==0.6.0',
]
setup(name='steadymark',
version='0.5.6',
description=(u'Markdown-based test runner for python. '
'Good for github projects'),
author=u'Gabriel Falcao',
author_email='gabriel@nacaolivre.org',
url='http://github.com/gabrielfalcao/steadymark',
packages=get_packages(),
install_requires=requirements,
entry_points={
'console_scripts': ['steadymark = steadymark:main'],
},
package_data={
'steadymark': ['COPYING', '*.md'],
},
version='0.6.0',
description=(u'Markdown-based test runner for python. '
'Good for github projects'),
author=u'Gabriel Falcao',
author_email='gabriel@nacaolivre.org',
url='http://github.com/gabrielfalcao/steadymark',
packages=get_packages(),
install_requires=requirements,
entry_points={
'console_scripts': ['steadymark = steadymark:main'],
},
package_data={
'steadymark': ['COPYING', '*.md'],
},
)

View File

@ -25,4 +25,4 @@
# OTHER DEALINGS IN THE SOFTWARE.
from __future__ import unicode_literals
version = '0.5.6'
version = '0.6.0'