4d82104ecf
This update adds hooks to the spec files for the following packages to generate wheels for the python modules: - fm-api - fm-common - fm-rest-api - python-fmclient Change-Id: I0542650b52b9c5b0627023a2ce1996176135411d Story: 2003907 Task: 27525 Signed-off-by: Don Penney <don.penney@windriver.com>
13 lines
402 B
Python
13 lines
402 B
Python
|
|
from setuptools import setup
|
|
from distutils.core import Extension
|
|
|
|
setup(name="fm_core", version="1.0",
|
|
ext_modules=[Extension("fm_core", [
|
|
"fm_python_mod_main.cpp"],
|
|
libraries=[
|
|
'pq',
|
|
"fmcommon"],
|
|
library_dirs=['.']
|
|
)])
|