setup.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/usr/bin/env python3
  2. from partmgr.core.version import VERSION_STRING
  3. from distutils.core import setup
  4. import sys
  5. try:
  6. import py2exe
  7. except ImportError as e:
  8. py2exe = None
  9. try:
  10. if py2exe and "py2exe" in sys.argv:
  11. raise ImportError
  12. from cx_Freeze import setup, Executable
  13. cx_Freeze = True
  14. except ImportError as e:
  15. cx_Freeze = False
  16. freezeExecutables = [ ("partmgr-gui", None), ]
  17. extraKeywords = {}
  18. if py2exe:
  19. extraKeywords["console"] = [ s for s, e in freezeExecutables ]
  20. if cx_Freeze:
  21. executables = []
  22. for script, exe in freezeExecutables:
  23. if exe:
  24. if os.name.lower() in ("nt", "ce"):
  25. exe += ".exe"
  26. executables.append(Executable(script = script,
  27. targetName = exe))
  28. else:
  29. executables.append(Executable(script = script))
  30. extraKeywords["executables"] = executables
  31. extraKeywords["options"] = {
  32. "build_exe" : {
  33. "packages" : [ "partmgr", ],
  34. }
  35. }
  36. setup( name = "partmgr",
  37. version = VERSION_STRING,
  38. description = "Part manager",
  39. license = "GNU General Public License v2 or later",
  40. author = "Michael Buesch",
  41. author_email = "m@bues.ch",
  42. url = "http://bues.ch/h/partmgr",
  43. packages = [ "partmgr",
  44. "partmgr/core",
  45. "partmgr/pricefetch",
  46. "partmgr/gui", ],
  47. scripts = [ "partmgr-gui",
  48. "partmgr-import-partdb", ],
  49. keywords = [ ],
  50. classifiers = [
  51. ],
  52. # long_description = open("README.txt").read(),
  53. **extraKeywords
  54. )