Distutils is the standard packaging system for Python modules and applications.
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-requestsHere is my project directory structure, which includes the project folder, plus a "framework" folder containing packages and modules shared …
python distutilsI have a tool which I have written in python and generally should be run as a daemon. What are …
python packaging setuptools distutilsCan I download and install Python modules from PyPi strictly inside a script, without using a shell at all? I …
python pip distutils easy-install mayaI have a library called "example" that I'm installing into my global site-packages directory. However, I'd like to be able …
python deployment distutilsI'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-installI 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 distutilsFor example, I may use python setup.py build --compiler=msvc or python setup.py build --compiler=mingw32 or just …
python compiler-construction installation distutilsWhen installing my python package, I want to be able to tell the user about various optional dependencies. Ideally I …
python distutils pipI 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