Advertisement
Sax

PyPod 3.0 setup

Sax
Nov 27th, 2011
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. from distutils.core import setup
  2. import py2exe
  3.  
  4. from glob import glob
  5. data_files = [("Microsoft.VC90.CRT", glob(r'C:\Users\Sax\Desktop\Pypod\*.*'))]
  6. setup(
  7.     data_files=data_files,
  8.     name="PyPod",
  9.     version="3.2b",
  10.     description="Nope! Chuck Testa!",
  11.     author="Saxo Miko Mola",
  12.     author_email="meh",
  13.     url="muh",
  14.     license="Creative Commons 3.0, Non-Commercial Share-alike",
  15.     scripts=["App.py"],
  16.     windows=["App.py"])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement