Guest User

Untitled

a guest
Feb 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. from distutils.core import setup
  4. import py2exe
  5.  
  6. setup(name="Vivete",
  7. version="1.0",
  8.  
  9.  
  10. author_email="email del autor",
  11. url="url del proyecto",
  12.  
  13. scripts=["Vivete.py"],
  14. console=["Vivete.py"],
  15. options={"py2exe": {"bundle_files": 1}},
  16. zipfile=None,
  17. )
Add Comment
Please, Sign In to add comment