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.
15 lines
429 B
15 lines
429 B
from distutils.core import setup, Extension
|
|
|
|
module_pEp = Extension('pEp',
|
|
sources = ['src/pEpmodule.cc',],
|
|
include_dirs = ['/Users/vb/include',],
|
|
library_dirs = ['/Users/vb/lib',],
|
|
libraries = ['pEpEngine',],
|
|
)
|
|
|
|
setup(
|
|
name='pEp Python adapter',
|
|
version='1.0',
|
|
description='Provides a Python module giving access to pEp engine',
|
|
ext_modules=[module_pEp]
|
|
)
|
|
|