Build and distribute C/C++ static libraries
Project description
Build and distribute C/C++ static libraries via Python packages.
Getting Started
You can have a setup.py similar to
from os.path import join
from setuptools import setup
def get_lib():
from build_capi import CApiLib
mylib = CApiLib('pkg_name.lib.nmylib',
sources=[join('pkg_name', 'sources', 'example.c')],
include_dirs=[join('pkg_name', 'include')])
setup(
name='pkg_name',
# ...
setup_requires=['build_capi'],
capi_libs=[get_lib],
include_package_data=True,
data_files=[(join('pkg_name', 'include'), join('pkg_name', 'include',
'example.h'))],
package_data={'': [join('pkg_name', 'lib', '*.*')]})
and then have a pkg_name/__init__.py
def get_include():
import pkg_name
from os.path import join, dirname
return join(dirname(pkg_name.__file__), 'include')
def get_lib():
import pkg_name
from os.path import join, dirname
return join(dirname(pkg_name.__file__), 'lib')
Please, refer to build_capi/example/prj_name for a minimal example of project using build_capi.
Install
The recommended way of installing it is via conda
conda install -c conda-forge build-capi
An alternative way would be via pip
pip install build-capi
License
This project is licensed under the MIT License - see the LICENSE file for details
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
build-capi-1.1.10.tar.gz
(6.3 kB
view details)
File details
Details for the file build-capi-1.1.10.tar.gz
.
File metadata
- Download URL: build-capi-1.1.10.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4048fe3a1fa34e390eeae507c089499ab81cf9f34d8babfe229da20c0c2810a |
|
MD5 | 7dcba1adbb927cdbaad80ee3997aa3ee |
|
BLAKE2b-256 | b5168c3b75d481c98af68a4ad5b03f6d14ed3a7e03216950c084c28b3d3d8e2a |