¡@

Home 

python Programming Glossary: package_data

Including non-Python files with setup.py

http://stackoverflow.com/questions/1612733/including-non-python-files-with-setup-py

Probably the best way to do this is to use the setuptools package_data directive. This does mean using setuptools or distribute instead.. find_packages exclude 'ez_setup' 'tests' 'tests. ' package_data '' 'license.txt' include_package_data True install_requires.. 'tests' 'tests. ' package_data '' 'license.txt' include_package_data True install_requires Note the specific line that's critical..

python distutils does not include data_files

http://stackoverflow.com/questions/2994396/python-distutils-does-not-include-data-files

distutils that this is necessary anything in data_files or package_data should be included in the generated MANIFEST automatically but..

MANIFEST.in ignored on “python setup.py install” - no data files installed?

http://stackoverflow.com/questions/3596979/manifest-in-ignored-on-python-setup-py-install-no-data-files-installed

whyteboard directory. Or you could instead make your data package_data of the whyteboard package which means it needs to live inside..

setuptools: package data folder location

http://stackoverflow.com/questions/4519127/setuptools-package-data-folder-location

How do I use data in package_data from source code?

http://stackoverflow.com/questions/5897666/how-do-i-use-data-in-package-data-from-source-code

do I use data in package_data from source code In setup.py I have specified package_data.. from source code In setup.py I have specified package_data like this packages 'hermes' package_dir 'hermes' 'hermes' package_data.. like this packages 'hermes' package_dir 'hermes' 'hermes' package_data 'hermes' 'templates .tpl' And my directory structure is roughly..

How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?

http://stackoverflow.com/questions/7275295/how-do-i-write-a-setup-py-for-a-twistd-twisted-plugin-that-works-with-setuptools

added by some tools . Other attempts seem to use 'package_data' instead eg http bazaar.launchpad.net ~glyph divmod.org trunk.. may want more options here including install_requires # package_data and classifiers # Make Twisted regenerate the dropin.cache if..

How to include package data with setuptools/distribute?

http://stackoverflow.com/questions/7522250/how-to-include-package-data-with-setuptools-distribute

distribute I can not get the installer to pull in any package_data files. Everything I've read says that the following is the correct.. please advise setup name 'myapp' packages find_packages package_data 'myapp' 'data .txt' include_package_data True zip_safe False.. find_packages package_data 'myapp' 'data .txt' include_package_data True zip_safe False install_requires 'distribute' where myapp..