Skip to content Skip to sidebar Skip to footer
Showing posts with the label Distutils

How To Access Python Package Metadata From Within The Python Console?

If I have built a python package employing distutils.core, e.g. via setup( ext_package='foo… Read more How To Access Python Package Metadata From Within The Python Console?

Build Python Package With C Bindings In Windows (vc90) Causes Lnk1181 Fatal Error

I'm trying to build a Python package (pyspotify) with bindings to a C library (libspotify). I&#… Read more Build Python Package With C Bindings In Windows (vc90) Causes Lnk1181 Fatal Error

How Do I Package For Distribution A Python Module That Uses A Shared Library?

I'm writing some bindings for a C library and am not sure how to configure all this for distrib… Read more How Do I Package For Distribution A Python Module That Uses A Shared Library?

Python3 Shared Extension Doesn't Link Against Library Dependency

I'm creating a shared Python extension for my library and I'm using distutils to build it. … Read more Python3 Shared Extension Doesn't Link Against Library Dependency

Place Pre-compiled Extensions In Root Folder Of Non-pure Python Wheel Package

TL;DR How do you get distutils/setuptools to include a non-pure data file correctly? I've got a… Read more Place Pre-compiled Extensions In Root Folder Of Non-pure Python Wheel Package

Calling C++ Code From Python Using Cython Whith The Distutilis Approach

I am trying to call a c++ code from a python script using cython. I already managed to work with an… Read more Calling C++ Code From Python Using Cython Whith The Distutilis Approach

Customizing Python Package Directory Layout With Setup.py

Suppose I have the following directory structure: src/ └── python/ └── generated/ ├── _… Read more Customizing Python Package Directory Layout With Setup.py

How Do You Get Cimport To Work In Cython?

I have a directory structure as so: /my_module init.py A/ __init__.py a.pyx B/ __init__.py … Read more How Do You Get Cimport To Work In Cython?