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

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?

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 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

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 To Put My Python C-module Inside Package?

I would like to gather multiple Python modules under one package, so they do not reserve too many n… Read more How To Put My Python C-module Inside Package?

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?

Pybuilder - Non-python Files Are Not Packaged

My current project is in python. For build package generation + unit test running, I'm using Py… Read more Pybuilder - Non-python Files Are Not Packaged

Pip Freeze Captures The Package Name As If It Was On Python Index Site, But It Is Not. Full Path Is Needed

I installed a package from git hub: pip install -e git+http://github.com/un33k/django-uuslug.git#eg… Read more Pip Freeze Captures The Package Name As If It Was On Python Index Site, But It Is Not. Full Path Is Needed

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?

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?

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