Skip to content

Instantly share code, notes, and snippets.

@ManuelZ
Created August 4, 2010 06:59
Show Gist options
  • Select an option

  • Save ManuelZ/507767 to your computer and use it in GitHub Desktop.

Select an option

Save ManuelZ/507767 to your computer and use it in GitHub Desktop.

Revisions

  1. ManuelZ created this gist Aug 4, 2010.
    12 changes: 12 additions & 0 deletions setup.py
    Original 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"]
    )