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

Top-level Package Handling With Setuptools (or Another Python Egg Builder)

I am writing a little python app. I want to be able to easily deploy the app. I know that python 2.… Read more Top-level Package Handling With Setuptools (or Another Python Egg Builder)

How To Strip Source From Distutils Binary Distributions?

I want to create a bytecode-only distribution from distutils (no really, I do; I know what I'm … Read more How To Strip Source From Distutils Binary Distributions?

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

How To Depends Of A System Command With Python/distutils?

I'm looking for the most elegant way to notify users of my library that they need a specific un… Read more How To Depends Of A System Command With Python/distutils?

How To Install Python-distutils For Old Python Versions

I am running Ubuntu 20.04 with python 3.6, 3.7, and 3.8 installed. I am trying to install some pack… Read more How To Install Python-distutils For Old Python Versions

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