Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from cx_Freeze import setup, Executable
- build_exe_options = {'packages': ['os','sys','numpy','cv2', 'argparse','matplotlib', 'pylab']
- }
- setup(name="draw_precision_recall_curve",
- version = "0.1",
- description = "",
- executables = [Executable("draw_precision_recall_curve.py")],
- options = {"build_exe": build_exe_options}
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement