Adds simple setup file. Cleans repo. Updates gitignore to avoid commiting clutter

This commit is contained in:
julien Lengrand-Lambert
2012-04-19 08:01:35 +02:00
parent eac2a7727f
commit a14d9fd6db
3 changed files with 12 additions and 1 deletions

4
.gitignore vendored
View File

@@ -1,2 +1,4 @@
*.pyc
output/*
output/*
build
dist

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 MiB

9
setup.py Normal file
View File

@@ -0,0 +1,9 @@
'''
Created on 19 avr. 2012
@author: jll
'''
from distutils.core import setup
import py2exe
setup(console=['facemovie.py'])