2015-07-17 05:40:51 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
from glob import glob
|
|
|
|
import py2exe
|
|
|
|
|
|
|
|
setup(
|
|
|
|
data_files = [("Microsoft.VC90.CRT", glob(r'C:\Program Files\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT\*.*'))],
|
|
|
|
options={
|
|
|
|
"py2exe":{
|
|
|
|
|
|
|
|
"dll_excludes": ["MSVCP90.dll", ]
|
|
|
|
}
|
|
|
|
},
|
2015-07-17 14:34:01 +00:00
|
|
|
console=["attribution.py"]
|
2015-07-17 05:40:51 +00:00
|
|
|
)
|