@Joe'nin include_package_data=True
çizgiyi kaldırma tavsiyesinden sonra benim için de çalıştı.
Biraz daha detaylandırmak için dosyam yok MANIFEST.in
. CVS yerine Git kullanıyorum.
Depo bu tür bir şekil alır:
/myrepo
- .git/
- setup.py
- myproject
- __init__.py
- some_mod
- __init__.py
- animals.py
- rocks.py
- config
- __init__.py
- settings.py
- other_settings.special
- cool.huh
- other_settings.xml
- words
- __init__.py
word_set.txt
setup.py
:
from setuptools import setup, find_packages
import os.path
setup (
name='myproject',
version = "4.19",
packages = find_packages(),
# package_dir={'mypkg': 'src/mypkg'}, # didnt use this.
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.xml', '*.special', '*.huh'],
},
#
# Oddly enough, include_package_data=True prevented package_data from working.
# include_package_data=True, # Commented out.
data_files=[
# ('bitmaps', ['bm/b1.gif', 'bm/b2.gif']),
('/opt/local/myproject/etc', ['myproject/config/settings.py', 'myproject/config/other_settings.special']),
('/opt/local/myproject/etc', [os.path.join('myproject/config', 'cool.huh')]),
#
('/opt/local/myproject/etc', [os.path.join('myproject/config', 'other_settings.xml')]),
('/opt/local/myproject/data', [os.path.join('myproject/words', 'word_set.txt')]),
],
install_requires=[ 'jsonschema',
'logging', ],
entry_points = {
'console_scripts': [
# Blah...
], },
)
python setup.py sdist
Bir kaynak dağıtımı için çalıştırıyorum (ikili denemedim).
Yepyeni bir sanal ortamın içindeyken, bir dosyam var myproject-4.19.tar.gz
ve
(venv) pip install ~/myproject-4.19.tar.gz
...
Ve sanal ortamlarıma yüklenen her şey dışında site-packages
, bu özel veri dosyaları /opt/local/myproject/data
ve /opt/local/myproject/etc
.
data_files
sorunu çözdü. Ancak bu hataya açıktır ve bana "doğru hissettirmez". Birisi gerçekten olduğunu doğrulayabilir gerekli hem de yapılandırmayı çoğaltmakpackage_data
vedata_files
?