Top "Distutils" questions

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

pip ignores dependency_links in setup.py

I have dependency_links in my setup.py: ... dependency_links = ['http://github.com/robot-republic/python-s3/tarball/master.tar.gz#egg=…

python pip setuptools distutils easy-install
Managing resources in a Python project

I have a Python project in which I am using many non-code files. Currently these are all images, but I …

python resources setuptools distutils decoupling
MANIFEST.in ignored on "python setup.py install" - no data files installed?

Here's my stripped-down setup.py script with non-code stuff removed: #!/usr/bin/env python from distutils.core import setup from …

python build installation distutils
Is there a standard way to create Debian packages for distributing Python programs?

There is a ton of information on how to do this, but since "there is more than one way to …

python debian packaging distutils debhelper
What is the proper way to work with shared modules in Python development?

I'm working toward adopting Python as part of my team's development tool suite. With the other languages/tools we use, …

python python-3.x distutils
Python: How to force overwriting of files when using setup.py install (distutil)

I am using distutil to install my python code using python setup.py install I run into problems when I …

python installation distutils overwrite
setup.py not installing data files

I have a Python library that, in addition to regular Python modules, has some data files that need to go …

python python-2.7 distutils
How to add package data recursively in Python setup.py?

I have a new library that has to include a lot of subfolders of small datafiles, and I'm trying to …

python distutils setup.py
Automatic version number both in setup.py (setuptools) AND source code?

SITUATION: I have a python library, which is controlled by git, and bundled with distutils/setuptools. And I want to …

python git version setuptools distutils
Is it possible to include subdirectories using dist utils (setup.py) as part of package data?

Basically my python package is setup like: module \_examples \_folder1 \_file1.py \_file2.py \_folder2 \_file1.py \_file2.py Basically …

python installation distutils setup.py