Advertisement
Sohibbek

setup.py

Aug 1st, 2018
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. from cx_Freeze import setup, Executable
  2.  
  3. build_exe_options = {'packages': ['os','sys','numpy','cv2', 'argparse','matplotlib', 'pylab']
  4. }
  5.  
  6. setup(name="draw_precision_recall_curve",
  7.     version = "0.1",
  8.     description = "",
  9.     executables = [Executable("draw_precision_recall_curve.py")],
  10.     options = {"build_exe": build_exe_options}
  11.     )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement