vote up 0 vote down star

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?

flag

65% 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 at 11:22
data_files = [('', ['lgpl2.1_license.txt',]),] puts it in the Python26 folder. – cool-RR Oct 23 at 11:23

3 Answers

vote up 1 vote down check

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

if your directory tree has the following structure:

    mypkg/
        setup.py
        __init__.py
        licence.txt

then your setup.py should contain:

setup(...,
      data_files=[('Lib/site-packages/mypkg', ['license.txt'])]
     )

since first element of the tuples in data_files list should contain the directory where it's going to be installed relative to the sys.prefix. second element of that tuple is completely independent of the first element and should point to the file path relative to the setup.py.

link|flag
I placed my setup.py in the package folder, as I understood was the norm. (Which sucks anyway.) – cool-RR Oct 23 at 11:36
see my edit, that would affect only the second element of the tuple, not the first. – SilentGhost Oct 23 at 11:39
Doesn't work. Puts the file in c:\Python26\mypkg – cool-RR Oct 23 at 11:54
come on! I've given a full description of what directory should be. I've no idea where you want that file to be created. – SilentGhost Oct 23 at 11:57
1  
i was going to anwser the question, then read your comment and now think i'll pass – e-satis Oct 23 at 12:13
show 8 more comments

Your Answer

Get an OpenID
or

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