
4 changed files with 28 additions and 3 deletions
@ -1,15 +1,19 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
|
||||
from distutils.core import setup, Extension |
from distutils.core import setup, Extension |
||||
|
|
||||
module_pEp = Extension('pEp', |
module_pEp = Extension('pEp', |
||||
sources = ['src/pEpmodule.cc','src/converting.cc',], |
sources = ['src/pEpmodule.cc',], |
||||
include_dirs = ['/Users/vb/include',], |
include_dirs = ['/Users/vb/include',], |
||||
library_dirs = ['/Users/vb/lib',], |
library_dirs = ['/Users/vb/lib',], |
||||
libraries = ['pEpEngine',], |
libraries = ['pEpEngine',], |
||||
) |
) |
||||
|
|
||||
setup( |
setup( |
||||
name='pEp Python adapter', |
name='p≡p Python adapter', |
||||
version='1.0', |
version='1.0', |
||||
description='Provides a Python module giving access to pEp engine', |
description='Provides a Python module giving access to p≡p engine', |
||||
|
author="Volker Birk", |
||||
|
author_email="vb@pep-project.org", |
||||
ext_modules=[module_pEp] |
ext_modules=[module_pEp] |
||||
) |
) |
||||
|
@ -1,2 +1,11 @@ |
|||||
#include "converting.hh" |
#include "converting.hh" |
||||
|
#include <new> |
||||
|
#include <stdexcept> |
||||
|
|
||||
|
namespace pEp { |
||||
|
namespace utility { |
||||
|
using namespace std; |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
|
||||
|
@ -1,2 +1,12 @@ |
|||||
|
#pragma once |
||||
|
|
||||
|
#include <Python.h> |
||||
#include <pEp/pEpEngine.h> |
#include <pEp/pEpEngine.h> |
||||
|
#include <pEp/message_api.h> |
||||
|
|
||||
|
namespace pEp { |
||||
|
namespace utility { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
|
||||
|
Loading…
Reference in new issue