llvm-project
24 строки · 578.0 Байт
1"""For use on Windows. Run with:
2python.exe setup.py py2exe
3"""
4from __future__ import absolute_import, division, print_function5from distutils.core import setup6
7try:8import py2exe9except ImportError:10import platform11import sys12
13if platform.system() == "Windows":14print("Could not find py2exe. Please install then run setup.py py2exe.")15raise16else:17print("setup.py only required on Windows.")18sys.exit(1)19
20setup(21console=["check_cfc.py"],22name="Check CFC",23description="Check Compile Flow Consistency",24)
25