Created
September 22, 2011 22:24
-
-
Save fsouza/1236221 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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