Created
August 4, 2010 06:59
-
-
Save ManuelZ/507767 to your computer and use it in GitHub Desktop.
Revisions
-
ManuelZ created this gist
Aug 4, 2010 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ 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"] )