up vote 5 down vote favorite
share [g+] share [fb]

How do I make setup.py include a file that isn't part of the code? (Specifically, it's a license file, but it could be any other thing.)

I want to be able to control the location of the file. In the original source folder, the file is in the root of the package. (i.e. on the same level as the topmost __init__.py.) I want it to stay exactly there when the package is installed, regardless of operating system. How do I do that?

link|improve this question

75% accept rate
how do you do that at the moment? your previous question indicates that you're familiar with how to add the license file, so what is your code that "doesn't work"? – SilentGhost Oct 23 '09 at 11:22
data_files = [('', ['lgpl2.1_license.txt',]),] puts it in the Python26 folder. – Ram Rachum Oct 23 '09 at 11:23
After some negative feedback, I read your question again and realized what I was missing. I have updated my answer to provide a non-hackish solution to your question that doesn't require any additional modules (such as setuptools or distribute). – Evan Plaice Nov 19 '10 at 14:26
Thanks Evan. However, I am perfectly okay with using setuptools, since it is so prevalent. – Ram Rachum Nov 20 '10 at 16:13
feedback

3 Answers

up vote 5 down vote accepted

Probably the best way to do this is to use the setuptools package_data directive. This does mean using setuptools (or distribute) instead of distutils, but this is a very seamless "upgrade".

Here's a full (but untested) example:

from setuptools import setup, find_packages

setup(
    name='your_project_name',
    version='0.1',
    description='A description.',
    packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
    package_data={'': ['license.txt']},
    include_package_data=True,
    install_requires=[],
)

Note the specific line that's critical here:

package_data={'': ['license.txt']}

This is a dict of package names (empty = all packages) to a list of patterns (can include globs). For example, if you want to only specify files within your package, you can do that too:

package_data={'yourpackage': ['*.txt', 'path/to/resources/*.txt']}

The solution here is definitely not to rename your non-py files with a .py extension.

See Ian Bicking's presentation for more info.

link|improve this answer
The link to Ian's presentation is broken :( – Ken Cochrane Sep 30 '11 at 12:48
Found a link to the presentation here.. svn.colorstudy.com/home/ianb/setuptools-presentation/… – Ken Cochrane Sep 30 '11 at 15:49
Updated presentation link - thanks! – Hans L Dec 8 '11 at 17:56
package_data is also available to pure distutils setup scripts since Python 2.3. – Éric Araujo Dec 9 '11 at 16:12
feedback

To accomplish what you're describing will take two steps...

  • The file needs to be added to the source tarball
  • setup.py needs to be modified to install the data file to the source path

Step 1: To add the file to the source tarball, include it in the MANIFEST

Create a MANIFEST template in the folder that contains setup.py

The MANIFEST is basically a text file with a list of all the files that will be included in the source tarball.

Here's what the MANIFEST for my project look like:

  • CHANGELOG.txt
  • INSTALL.txt
  • LICENSE.txt
  • pypreprocessor.py
  • README.txt
  • setup.py
  • test.py
  • TODO.txt

Note: While sdist does add some files automatically, I prefer to explicitly specify them to be sure instead of predicting what it does and doesn't.

Step 2: To install the data file to the source folder, modify setup.py

Since you're looking to add a data file (LICENSE.txt) to the source install folder you need to modify the data install path to match the source install path. This is necessary because, by default, data files are installed to a different location than source files.

To modify the data install dir to match the source install dir...

Pull the install dir info from distutils with:

from distutils.command.install import INSTALL_SCHEMES

Modify the data install dir to match the source install dir:

for scheme in INSTALL_SCHEMES.values():
    scheme['data'] = scheme['purelib']

And, add the data file and location to setup():

data_files=[('', ['LICENSE.txt'])]

Note: The steps above should accomplish exactly what you described in a standard manner without requiring any extension libraries.

link|improve this answer
MANIFEST only control files included in the source tarball (produced by sdist). Files listed there won't be installed. – David Cournapeau Nov 17 '10 at 7:56
@David I didn't realize how far off I was in my first approach. I have updated the answer to be correct to accomplish what the question was asking without requiring any additional third-party libraries. – Evan Plaice Nov 19 '10 at 14:21
I consider manually editing the install schemes a very bad idea. – Éric Araujo Dec 9 '11 at 16:13
@Éric Any particular reason why? and, do you have a viable installer alternative that doesn't require 3rd party packages (like setup_tools) to work. I chose distutils over setuptools because it's included with a vanilla install of python and I was building modules for PYPI. There should be a better way to do this now using distutils2 but I haven't touched python in quite a while so I wouldn't know how. Since you seem to be knowledgeable about distutils2 I think it would benefit the rest of us to have a proper distutils2 alternative. – Evan Plaice Dec 14 '11 at 22:16
Because monkeying with internal objects that distutils and other tools depend on is inherently a bad idea. For a pure-distutils solution, use package_data. – Éric Araujo Dec 21 '11 at 16:19
feedback

Figured out a workaround: I renamed my lgpl2.1_license.txt to lgpl2.1_license.txt.py, and put some triple quotes around the text. Now I don't need to use the data_files option nor to specify any absolute paths. Making it a Python module is ugly, I know, but I consider it less ugly than specifying absolute paths.

link|improve this answer
2  
See my post. It doesn't have to be ugly. It's just hard to find a good example on the net because good documentation to setup packages is hard to find. – Evan Plaice Jun 15 '10 at 4:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.