Top "Distutils" questions

Distutils is the standard packaging system for Python modules and applications.

How to include third party Python packages in Sublime Text 2 plugins

I'm writing a sublime text 2 plugin that uses a module SEAPI.py which in itself imports the requests module. Since …

python plugins sublimetext2 distutils python-requests
Confused about the package_dir and packages settings in setup.py

Here is my project directory structure, which includes the project folder, plus a "framework" folder containing packages and modules shared …

python distutils
Python Daemon Packaging Best Practices

I have a tool which I have written in python and generally should be run as a daemon. What are …

python packaging setuptools 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 at all? I …

python pip distutils easy-install maya
Custom distutils commands

I have a library called "example" that I'm installing into my global site-packages directory. However, I'd like to be able …

python deployment distutils
Execute a Python script post install using distutils / setuptools

I'm trying to add a post-install task to Python distutils as described in How to extend distutils with a simple …

python installation setuptools distutils post-install
python/c++ - Compiling shared library with cmake and installing with distutils

I have a boost.python project that I compile using cmake and make. It's part of a python module, and …

c++ python cmake boost-python distutils
Python distutils, how to get a compiler that is going to be used?

For example, I may use python setup.py build --compiler=msvc or python setup.py build --compiler=mingw32 or just …

python compiler-construction installation distutils
Optional dependencies in distutils / pip

When installing my python package, I want to be able to tell the user about various optional dependencies. Ideally I …

python distutils pip
install_requires based on python version

I have a module that works both on python 2 and python 3. In Python<3.2 I would like to install a …

python setuptools distutils distribute install-requires