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.
 
 
 

24 lines
722 B

# -*- coding: utf-8 -*-
from distutils.core import setup, Extension
from glob import glob
prefix = '/Users/ed'
boost = '/opt/local'
module_pEp = Extension('pEp',
sources = glob('src/*.cc'),
include_dirs = [prefix+'/include', boost+'/include',],
library_dirs = [prefix+'/lib', boost+'/lib',],
libraries = ['pEpEngine', 'boost_python-mt', 'boost_locale-mt',],
extra_compile_args = ['-O0', '-UNDEBUG', '-std=c++14',],
)
setup(
name='p≡p Python adapter',
version='1.0',
description='Provides a Python module giving access to p≡p engine',
author="Volker Birk",
author_email="vb@pep-project.org",
ext_modules=[module_pEp]
)