Hello,

The FAQ has this weird statement:

“This specification does not have an opinion on how you should organize
your code. The .data directory is just a place for any files that are
not normally installed inside site-packages or on the PYTHONPATH.”

But, say, if I want to install some init script to /etc/init.d by using
distutils' data_files argument:

setup.py(...,
    data_files=[('/etc/init.d', ['my-init-script'])]
    )

How is it stored and represented by the wheel format?

Regards

Antoine.


_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to