【发布时间】:2021-04-13 15:32:33
【问题描述】:
我正在使用
python setup.py bdist_wheel
基本上是setuptools 库。
我的项目在存储库的根目录中包含LICENSE.txt 文件。
目标:
在轮子中正确包含这个特定的许可证文件
相关代码:
setup(
...,
license_files='LICENSE.txt',
...
)
错误:
warning: Failed to find the configured license file 'L'
warning: Failed to find the configured license file 'C'
warning: Failed to find the configured license file 'N'
warning: Failed to find the configured license file 't
【问题讨论】:
-
也许这篇文章回答了你的问题:stackoverflow.com/questions/9977889/…
标签: python python-3.x setuptools licensing python-wheel