将 json 文件添加到 MANIFEST.in 并安装包会导致错误



我的软件包树看起来像这样:(还有一些不相关的文件(

- setup.py
- MANIFEST.in
- mydir
  |
  - file.py
  - file.json

setup.py:

from distutils.core import setup
setup(
    name = 'mydir',
    packages = ['mydir'], 
    version = '1.2.2',
    description = 'desc',
    author = 'my name',
    author_email = 'my@email.com',
    url = 'https://github.com/myname/mydir', 
    download_url = 'https://github.com/myname/mydir/archive/1.2.2.tar.gz',
    keywords = ['key1', 'key2'],
    classifiers = [],
  )

MANIFEST.in文件为空时,json 不包含在 dist 文件中。
所以我已将 json 文件添加到MANIFEST.in所以现在它只包含:

include mydir/file.json

当我执行python setup.py sdist命令时,自动生成的MANIFEST文件包含所有必要的文件,包括file.json.
但是,当我尝试使用 pip 安装我的软件包时,出现以下错误:

error: can't copy 'file.json': doesn't exist or not a regular file

知道了。
setup.py更改为使用 from setuptools import setup, find_packages 而不是 distutils.core
还添加了include_package_data = True, setup.py

setup(
    ...
    include_package_data = True,
    ...
)

连同包含在MANIFEST.in中,JSON 文件按预期提取到目标目录。

相关内容

  • 没有找到相关文章

最新更新