Skip to content

Instantly share code, notes, and snippets.

@fsouza
Created September 22, 2011 22:24
Show Gist options
  • Save fsouza/1236221 to your computer and use it in GitHub Desktop.
Save fsouza/1236221 to your computer and use it in GitHub Desktop.
# -*- coding:utf-8 -*-
"""
Data-Factory
------------
Data-Factory is a simple random data generator library that
aims to make easier to generate random data for databases
or object factories.
"""
from setuptools import setup
setup(
version="0.3",
name="data-factory",
author="Italo Maia",
author_email="[email protected]",
url="https://github.com/italomaia/data-factory",
keywords="data factory testing",
description="Simple collection of data generating functions very useful for testing software.",
package_dir={'': 'src'},
py_modules=["data_factory"],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment