public
Description: Utilities for testing Django applications
Homepage: http://ericholscher.com/projects/django-test-utils/
Clone URL: git://github.com/ericholscher/django-test-utils.git
miracle2k (author)
Sun Sep 13 06:37:37 -0700 2009
ericholscher (committer)
Fri Oct 09 18:40:40 -0700 2009
commit  13c93bb2c7e898f4aba6fc325ae29b41fa4d681d
tree    f42c9907b90bc078bba7b55597d22b8a0f9232e8
parent  ebcbd9780b01be9e7ab984576230be3caba6c98d
django-test-utils / setup.py
100644 18 lines (16 sloc) 0.573 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
 
setup(
    name = "django-test-utils",
    version = "0.3",
    packages = find_packages(),
    author = "Eric Holscher",
    author_email = "eric@ericholscher.com",
    description = "A package to help testing in Django",
    url = "http://github.com/ericholscher/django-test-utils/tree/master",
    download_url='http://www.github.com/ericholscher/django-test-utils/tarball/0.3.0',
    test_suite = "test_project.runtests.runtests",
    include_package_data = True,
    install_requires=[
        'BeautifulSoup',
    ]
    )