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

Having Py2exe Include My Data Files (like Include_package_data)

I have a Python app which includes non-Python data files in some of its subpackages. I've been … Read more Having Py2exe Include My Data Files (like Include_package_data)

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

Can Cython Be Compiled With Icc?

I am trying to build cython from source with icc compiler on Ubuntu 14.04 as my python is compiled … Read more Can Cython Be Compiled With Icc?

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

Why Is An Egg-info File Created When I'm Using Distutils?

Below is my setup.py. I don't use anything from setuptools in my code and my project has no ext… Read more Why Is An Egg-info File Created When I'm Using Distutils?

What's Wrong With This `setup.py`?

I've been having problems withe getting setup.py to do the sdist thing correctly. I boiled it d… Read more What's Wrong With This `setup.py`?