forked from ricomoss/django_fixtureless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from distutils.core import setup
version = '1.4.2.1'
LONG_DESCRIPTION = """
=====================================
django-fixtureless
=====================================
django-fixtureless provides an easy way to create model objects within
your Django project for testing purposes. This is done through
inspection of your database relationships. All required fields are
randomly filled. All foreign key relationships will create respective
objects in the same fashion.
.. note:: django-fixtureless only supports Django 1.4 or higher and Python
2.7.x and Python 3.3.x.
.. _Django: http://djangoproject.com
"""
setup(
name='django-fixtureless',
version=version,
author='Rico Cordova',
author_email='rico.cordova@rocksolidbox.com',
packages=['fixtureless'],
url='https://github.com/ricomoss/django-fixtureless',
license='LICENSE.txt',
description='Test utility to create fixtureless objects in Django.',
long_description=LONG_DESCRIPTION,
keywords=['unittest', 'django', 'Python 3'],
install_requires=['django>=1.4']
)