From 0431afa53f064529dd0d018f3c67f254352b66e7 Mon Sep 17 00:00:00 2001 From: Mark Sandstrom Date: Sun, 22 Aug 2010 11:33:45 -0700 Subject: factory_boy: a test fixtures replacement based on thoughtbot's factory_girl for Ruby --- setup.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ee80d4b --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +#!/usr/bin/python + +from distutils.core import setup + +# Remember to change in factory/__init__.py as well! +VERSION = '1.0.0' + +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', + keywords=['factory_boy', 'factory', 'fixtures'], + packages=['factory'], + license='MIT', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Framework :: Django', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Software Development :: Testing', + 'Topic :: Software Development :: Libraries :: Python Modules' + ] +) \ No newline at end of file -- cgit v1.2.3