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

Python Distutils - Change Path Rpm Installs To

I have Python 2.7.5 and am using distutils (python setup.py bdist_rpm) to create the following RPM.… Read more Python Distutils - Change Path Rpm Installs To

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

Why Does "python Setup.py Sdist" Create Unwanted "project-egg.info" In Project Root Directory?

When I run python setup.py sdist it creates an sdist in my ./dist directory. This includes a … Read more Why Does "python Setup.py Sdist" Create Unwanted "project-egg.info" In Project Root Directory?

How To Get Error Log Of A Disutils Setup In Python?

I am new to Python. I have created some C/C++ extensions for Python and able to build those with th… Read more How To Get Error Log Of A Disutils Setup In Python?

Declaring Optional Components Of My Package In Setup.py

I've put together a library with the following structure: filters/ __init__.py core/ _… Read more Declaring Optional Components Of My Package In Setup.py

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?

How To Make A Pyme (python Library) Run In Python 2.4 On Windows?

I want to run this library on Python 2.4 in Windows XP. I installed the pygpgme-0.8.1.win32.exe fil… Read more How To Make A Pyme (python Library) Run In Python 2.4 On Windows?

Using Cython Extension Once Compiled [under Windows], How To Use .pyd's?

I am used with compiling self-made python extensions under Linux using Cython. On Linux, I use dist… Read more Using Cython Extension Once Compiled [under Windows], How To Use .pyd's?