Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.)

share|improve this question

1 Answer

up vote 4 down vote accepted

http://docs.python.org/distutils/setupscript.html#installing-additional-files is all you should need.

Since you mentioned a license file, you can include additional meta-data (such as a license) this way.

share|improve this answer
2  
'data_files' is kinda broken I think, because it installs the files in a system-wide location, not associated with my project files, and this location changes depending on whether the user installs my package using "setup.py install" or "pip install". So my code can't then find the files. I guess I could try to search both locations at runtime. Do people really do this? – Jonathan Hartley Feb 12 '12 at 11:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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