Re:py2exe y matplot

Manuel Enrique Gutierrez Perez <[email protected]>
Newsgroups gmane.comp.python.general.castellano
Message-ID <[email protected]>
¿Qué dice http://www.py2exe.org/index.cgi/MatPlotLib? Se supone que ahí esté la respuesta a tu pregunta.

No tengo acceso a internet en estos momentos y no puedo ver lo que dice la página de py2exe sobre matplotlib pero te envío un ejemplo del setup.py de una aplicación que migré hace un tiempo.

setup(
            windows = [
                            {    "script": "main.py",
                                "icon_resources": [(1, "kuota.ico")],
                                "other_resources": [(24,1,manifest)]
                            }
                        ],
                         options={"py2exe":{"includes":["sip"]}}, # <-incluye "matplotlib"
                            data_files=["kuota.ico"]
        )

Sip se incluye para PyQt4, no sé si wxwidgets lo requiera igual, incluye matplotlib a ver si funciona, estoy aprendiendo todavía.

Saludos, Manuel.

_______________________________________________
Lista de correo Python-es 
http://listas.aditel.org/listinfo/python-es
FAQ: http://listas.aditel.org/faqpyes
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.