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

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

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)

How To Place A Common Code For Different Projects

I've got two python projects in a separate folders. And I also have a common code which I use i… Read more How To Place A Common Code For Different Projects

How To Create A .dylib C Extension On Mac Os X With Distutils And/or Setuptools?

I need to make a C extension with distutils (and/or setuptools) that can be used BOTH dynamically a… Read more How To Create A .dylib C Extension On Mac Os X With Distutils And/or Setuptools?

Importerror: No Module Named Distutils

Attempt to install psutils resulted a big headache... $ python -V Python 2.4.2 $ cat /etc/SuSE-rel… Read more Importerror: No Module Named Distutils

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?

Manifest.in, Package_data, And Data_files Clarification?

I am trying to create a Python package, and I have a directory structure like this: mypkg/ ├── __in… Read more Manifest.in, Package_data, And Data_files Clarification?

Is `setup.cfg` Deprecated?

It's not completely clear to me, what is the status of setup.cfg. I am looking for solutions fo… Read more Is `setup.cfg` Deprecated?