Skip to content

Instantly share code, notes, and snippets.

@ManuelZ
Created August 4, 2010 06:59
Show Gist options
  • Save ManuelZ/507767 to your computer and use it in GitHub Desktop.
Save ManuelZ/507767 to your computer and use it in GitHub Desktop.
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