控制网复测平面基准归算程序(包含控制网复测平面基准计算,平面控制网稳定性计算,水准测段高差稳定计算三个程序功能)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 492B

123456789101112131415161718192021222324
  1. import sys
  2. import os
  3. from cx_Freeze import setup, Executable
  4. # ADD FILES
  5. files = ['icon.ico','themes/']
  6. # TARGET
  7. target = Executable(
  8. script="main.py",
  9. base="Win32GUI",
  10. icon="icon.ico"
  11. )
  12. # SETUP CX FREEZE
  13. setup(
  14. name = "控制网复测平面基准归算程序",
  15. version = "1.0",
  16. description = "控制网复测平面基准归算程序",
  17. author = "四川中水成勘院",
  18. options = {'build_exe' : {'include_files' : files}},
  19. executables = [target]
  20. )