diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2011-12-20 23:29:04 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2011-12-20 23:32:08 +0100 |
commit | 7e8666ef42172d5ab12e1bf314379f4231b136f4 (patch) | |
tree | a70066627deb433667ee53ec860fc057c2721e5f | |
parent | 7e72344e55b930180cd2d66b44ccccaed45f79e5 (diff) | |
download | factory-boy-7e8666ef42172d5ab12e1bf314379f4231b136f4.tar factory-boy-7e8666ef42172d5ab12e1bf314379f4231b136f4.tar.gz |
Version bump, author info updated.
Getting ready for PyPI upload.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
-rw-r--r-- | factory/__init__.py | 4 | ||||
-rw-r--r-- | setup.py | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/factory/__init__.py b/factory/__init__.py index 4669e61..017daf0 100644 --- a/factory/__init__.py +++ b/factory/__init__.py @@ -18,8 +18,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -__version__ = '1.0.2' # Remember to change in setup.py as well! -__author__ = 'Mark Sandstrom <mark@deliciouslynerdy.com>' +__version__ = '1.0.4' # Remember to change in setup.py as well! +__author__ = 'Raphaël Barrois <raphael.barrois@polytechnique.org>' from base import ( Factory, @@ -3,15 +3,15 @@ from distutils.core import setup # Remember to change in factory/__init__.py as well! -VERSION = '1.0.2' +VERSION = '1.0.4' setup( name='factory_boy', version=VERSION, - description="A test fixtures replacement based on thoughtbot's factory_girl for Ruby.", - author='Mark Sandstrom', - author_email='mark@deliciouslynerdy.com', - url='http://github.com/dnerdy/factory_boy', + description="A test fixtures replacement based on thoughtbot's factory_girl for Ruby (originally by mark@deliciouslynerdy.com).", + author='Raphaël Barrois', + author_email='raphael.barrois@polytechnique.org', + url='http://github.com/rbarrois/factory_boy', keywords=['factory_boy', 'factory', 'fixtures'], packages=['factory'], license='MIT', |