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

How Can I Install Python Modules Programmatically / Through A Python Script?

Can I download and install Python modules from PyPi strictly inside a script, without using a shell… Read more How Can I Install Python Modules Programmatically / Through A Python Script?

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?

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

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

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