Created
August 4, 2010 06:59
-
-
Save ManuelZ/507767 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
from distutils.core import setup | |
setup(name="Aplicacion de ejemplo", | |
version="0.1", | |
description="Ejemplo del funcionamiento de distutils", | |
author="Raul Gonzalez", | |
author_email="zootropo en gmail", | |
url="http://mundogeek.net/tutorial-python/", | |
license="GPL", | |
scripts=["ejemplo.py"] | |
py_modules=["apoyo"] | |
packages=["gui", "bbdd"] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment