setup.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. from setuptools import setup
  2. from setuptools.command.build_py import build_py
  3. import glob
  4. import os
  5. import pathlib
  6. import shutil
  7. import subprocess
  8. import sys
  9. if os.name != 'nt':
  10. raise EnvironmentError(f"This is only supported on Windows... not for: {os.name}")
  11. THIS_FOLDER = os.path.abspath(os.path.dirname(__file__))
  12. def getVersion() -> str:
  13. with open(os.path.join(THIS_FOLDER, 'pydeskband', '__init__.py'), 'r') as f:
  14. text = f.read()
  15. for line in text.splitlines():
  16. if line.startswith('__version__'):
  17. version = line.split('=', 1)[1].replace('\'', '').replace('"', '')
  18. return version.strip()
  19. raise EnvironmentError("Unable to find __version__!")
  20. def get_msbuild() -> str:
  21. ''' globs to find VS 2019's instance of MSBuild.exe '''
  22. matches = glob.glob(r'C:\Program Files*\Microsoft Visual Studio\2019\*\MSBuild\*\Bin\MSBuild.exe')
  23. if matches:
  24. print(f"MSBuild: {matches[0]}")
  25. return pathlib.Path(matches[0])
  26. raise EnvironmentError("Could not find MSBuild for VS 2019!")
  27. def get_sln() -> pathlib.Path:
  28. sln = pathlib.Path(THIS_FOLDER) / "dll/PyDeskband/PyDeskband.sln"
  29. if not sln.is_file():
  30. raise FileNotFoundError(f"Could not find sln file: {sln}")
  31. return sln
  32. def run_msbuild(configuration, platform) -> pathlib.Path:
  33. ''' Runs MSBuild for the given configuration/platform. Returns the path to the built dll '''
  34. if configuration not in ('Debug', 'Release'):
  35. raise ValueError("configuration should be Debug or Release")
  36. if platform not in ('x64', 'x86'):
  37. raise ValueError("platform should be x64 or x86")
  38. if subprocess.check_call([
  39. get_msbuild(),
  40. get_sln(),
  41. f'/p:Configuration={configuration}',
  42. f'/p:Platform={platform}',
  43. ]) == 0:
  44. arch_folder = 'x64' if platform == 'x64' else ''
  45. output = pathlib.Path(THIS_FOLDER) / f"dll/PyDeskband/{arch_folder}/{configuration}/PyDeskband.dll"
  46. if not output.is_file():
  47. raise FileNotFoundError("MSBuild was successful, though we couldn't find the output dll.")
  48. return output
  49. class BuildPyCommand(build_py):
  50. """Custom build command. That will build dlls using MSBuild"""
  51. def build_and_copy_dlls(self):
  52. '''
  53. Build x64 and x86 versions of the dll. Then copies them to pydeskband/dlls within the Python package
  54. '''
  55. x64_dll = run_msbuild('Release', 'x64')
  56. x86_dll = run_msbuild('Release', 'x86')
  57. dll_dir = pathlib.Path(THIS_FOLDER) / "pydeskband/dlls"
  58. if not dll_dir.is_dir():
  59. dll_dir.mkdir()
  60. # copy dlls to dll dir
  61. shutil.copy(x64_dll, dll_dir / "PyDeskband_x64.dll")
  62. shutil.copy(x86_dll, dll_dir / "PyDeskband_x86.dll")
  63. print("DLLs have been copied!")
  64. def run(self):
  65. '''
  66. Called to perform the build_py step
  67. '''
  68. self.build_and_copy_dlls()
  69. build_py.run(self)
  70. setup(
  71. name='pydeskband',
  72. author='csm10495',
  73. author_email='csm10495@gmail.com',
  74. url='http://github.com/csm10495/pydeskband',
  75. version=getVersion(),
  76. packages=['pydeskband'],
  77. license='MIT License',
  78. python_requires='>=3.7',
  79. long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
  80. long_description_content_type="text/markdown",
  81. classifiers=[
  82. 'Intended Audience :: Developers',
  83. 'Natural Language :: English',
  84. 'Operating System :: Microsoft :: Windows',
  85. 'Programming Language :: Python',
  86. 'Programming Language :: Python :: 3',
  87. ],
  88. package_data={
  89. "pydeskband": ["dlls/*.dll"],
  90. },
  91. cmdclass={
  92. 'build_py': BuildPyCommand
  93. },
  94. install_requires=[],
  95. )