私はこのようなプロジェクトを持っています:
├── CHANGES.txt
├── LICENSE
├── MANIFEST.in
...
├── docs
│ └── index.rst
├── negar
│ ├── Negar.py
│ ├── Virastar.py
│ ├── Virastar.pyc
│ ├── __init__.py
│ ├── data
│ │ ├── __init__.py
│ │ └── untouchable.dat
│ ├── gui.py
│ ├── gui.pyc
│ ├── i18n
│ │ ├── fa_IR.qm
│ │ └── fa_IR.ts
│ └── negar.pro
├── setup.py
...
その中に、私のファイルにVirastar.py
は からのデータが必要data.untouchable.dat
です。これでプロジェクトをインストールするまでは正常に動作しますsetup.py
:
setup(
...
include_package_data=True,
packages = find_packages() + ['negar'],
package_dir={'negar': 'negar'},
package_data={'negar': ['data/*.dat']},
entry_points={
'console_scripts': [
'negar = negar.Negar:main',
],
},
...
)
その後、プログラムを起動し、そのデータファイルが必要になると、次のエラーが返されます。
IOError: [Errno 2] No such file or directory: 'data/untochable.dat'
私のegg-info
ソースでも、データファイルが見つかりません:
...
negar/Negar.py
negar/Virastar.py
negar/__init__.py
negar/gui.py
negar/data/__init__.py
ここで何かを逃しましたか?
皆さん、ありがとうございました。
編集: init .pyに特別なものを追加する必要がありますか?
これを追加する必要があります: untouchable.dat を次のように使用しました:
f = codecs.open('data/untouchable.dat', encoding="utf-8")