setuptools 警告:找不到配置的许可证文件 'L'
setuptools warning: Failed to find the configured license file 'L'
我正在使用
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
https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html#metadata
Setuptools 官方文档声明 license_file
的数据类型为“str”,license_files
为 list-comma
解决方案 1:将 license_file
与 str
结合使用
setup(
...,
license_file='LICENSE.txt',
...
)
解决方案 2a:使用 license_files
和逗号分隔列表
setup(
...,
license_file=LICENSE.txt,
...
)
解决方案 2b setup.cfg license_files
我创建了一个新文件 setup.cfg
并升级了我的设置工具以允许它从 setup.cfg
中获取元数据
[metadata]
license_files = <name-of-license-file>
感谢:
我正在使用
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
https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html#metadata
Setuptools 官方文档声明 license_file
的数据类型为“str”,license_files
为 list-comma
解决方案 1:将 license_file
与 str
结合使用
setup(
...,
license_file='LICENSE.txt',
...
)
解决方案 2a:使用 license_files
和逗号分隔列表
setup(
...,
license_file=LICENSE.txt,
...
)
解决方案 2b setup.cfg license_files
我创建了一个新文件 setup.cfg
并升级了我的设置工具以允许它从 setup.cfg
[metadata]
license_files = <name-of-license-file>
感谢: