-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
65 lines (59 loc) · 2.55 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import os
import sys
import subprocess
from setuptools import setup, Extension, find_packages
from setuptools.command.build_ext import build_ext
class CMakeExtension(Extension):
def __init__(self, name, sourcedir=''):
# No sources; CMake handles the build.
super().__init__(name, sources=[])
self.sourcedir = os.path.abspath(sourcedir)
class CMakeBuild(build_ext):
def run(self):
# Check if CMake is installed
try:
subprocess.check_output(['cmake', '--version'])
except OSError:
raise RuntimeError("CMake must be installed to build these extensions.")
for ext in self.extensions:
self.build_extension(ext)
def build_extension(self, ext):
# Calculate the directory where the final .pyd will be placed (inside mssql_python)
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
cfg = 'Debug' if self.debug else 'Release'
cmake_args = [
'-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir,
'-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE=' + extdir,
'-DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE=' + extdir,
'-DPYTHON_EXECUTABLE=' + sys.executable,
'-DCMAKE_BUILD_TYPE=' + cfg
]
build_args = ['--config', cfg]
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
# Configure CMake project
subprocess.check_call(['cmake', ext.sourcedir] + cmake_args, cwd=self.build_temp)
# Build the target defined in your CMakeLists.txt
subprocess.check_call(['cmake', '--build', '.', '--target', 'ddbc_bindings'] + build_args, cwd=self.build_temp)
setup(
name='mssql-python',
version='0.1.5',
description='A Python library for interacting with Microsoft SQL Server',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Microsoft Corporation',
author_email='pysqldriver@microsoft.com',
url='https://github.com/microsoft/mssql-python',
packages=find_packages(),
package_data={
# Include DLL files inside mssql_python
'mssql_python': ['libs/*', 'libs/**/*', '*.dll']
},
include_package_data=True,
# Requires Python 3.13
python_requires='==3.13.*',
# Naming the extension as mssql_python.ddbc_bindings puts the .pyd directly in mssql_python
ext_modules=[CMakeExtension('mssql_python.ddbc_bindings', sourcedir='mssql_python/pybind')],
cmdclass={'build_ext': CMakeBuild},
zip_safe=False,
)