Das Befolgen der Empfehlung von @Joe, die include_package_data=True
Leitung zu entfernen , hat auch bei mir funktioniert.
Um etwas näher darauf einzugehen, habe ich keine MANIFEST.in
Datei. Ich benutze Git und nicht CVS.
Das Repository nimmt folgende Form an:
/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...
], },
)
Ich laufe python setup.py sdist
für eine Quelldistribution (habe keine Binärdatei ausprobiert).
Und wenn ich mich in einer brandneuen virtuellen Umgebung befinde, habe ich eine myproject-4.19.tar.gz
, Datei und verwende sie
(venv) pip install ~/myproject-4.19.tar.gz
...
Und abgesehen davon, dass alles in meiner virtuellen Umgebung installiert wird site-packages
, werden diese speziellen Datendateien in /opt/local/myproject/data
und installiert /opt/local/myproject/etc
.
data_files
das Problem gelöst. Dies ist jedoch fehleranfällig und fühlt sich für mich nicht "richtig" an. Kann jemand überprüfen, ob es wirklich notwendig ist , die Konfiguration in beidenpackage_data
und zu duplizierendata_files
?