gpt4 book ai didi

python - 将包限制为 CPython - setup.cfg

转载 作者:行者123 更新时间:2023-12-05 03:45:25 29 4
gpt4 key购买 nike

我根据 PEP-517 使用 pyproject.tomlsetup.cfg

我的setup.cfg如下:

[metadata]
name = Package
version = 1.0.0

[options]
py_modules = ...
python_requires = >=3

我希望将包限制为仅在 CPython 上工作,因为它解决了特定于实现的问题。

我试过使用环境标记,但遗憾的是它们在 python_requires 字段上不起作用:

python_requires = >=3; implementation_name == "cpython"

有什么方法可以在不求助于已弃用的 setup.py 的情况下实现我的愿望吗?

最佳答案

不幸的是,您不能通过环境标记来限制实现,并且包元数据没有定义任何合适的字段。但是,可以通过 wheel 元数据中的语言实现标签来限制实现;标签的格式在 PEP 425 中定义。 CPython 实现缩写为 cp,您的配置中的 python_requires = >=3 表示完整标记为 cp3。在 setup.cfg[bdist_wheel] 部分设置标签:

[metadata]
...

[options]
...

[bdist_wheel]
python_tag=cp3

这对 bdist_wheel 来说并不特殊;任何 distutils 子命令都可以在 setup.cfg 中有一个部分,其中可以保留其命令行选项。阅读 Writing the Setup Configuration File 了解更多详情。

从评论中回答你的问题:

To be honest I haven't even found the online documentation for the python-tag command. Am I missing something?

这确实有些隐蔽; wheel's docs 不为 bdist_wheel 的选项提供引用。通常,您通过 python setup.py bdist_wheel --help 列出它们(就像任何其他子命令一样),但由于您没有设置脚本,您可以伪造一个:

$ python -c "from setuptools import setup; setup()" bdist_wheel --help
Options for 'bdist_wheel' command:
...
--python-tag Python implementation compatibility tag (default: 'py3')

构建的 wheel 文件现在将具有 cp3-none-any 后缀(以及 wheel 元数据中的 cp3-none-any 标签),并且将被拒绝其他实现:

$ pypy3 -m pip install meowpkg-0.0.1-cp3-none-any.whl 
ERROR: meowpkg-0.0.1-cp3-none-any.whl is not a supported wheel on this platform.

这也适用于源 dists,因为 pip 将始终从符合 PEP 517 的 sdists 构建一个轮子(而不是求助于旧版 setup.py install),所以这也可以安全地与源代码一起使用。示例:

$ python -m build
$ pip uninstall -y wheel # for testing only
WARNING: Skipping wheel as it is not installed.
$ pip install dist/meowpkg-0.0.1.tar.gz
Processing ./dist/meowpkg-0.0.1.tar.gz
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing wheel metadata ... done
Building wheels for collected packages: meowpkg
Building wheel for meowpkg (PEP 517) ... done
Created wheel for meowpkg: filename=meowpkg-0.0.1-cp3-none-any.whl size=1005 sha256=d87571afcdeda6be74a182b9e3e1ce6035a4aea4bb173c291900a85e53232983
Stored in directory: /home/oleg.hoefling/.cache/pip/wheels/1a/8c/43/90d6b484adcf2515d25503b0c47f14565cadf0e891a597e23e
Successfully built meowpkg
Installing collected packages: meowpkg
Attempting uninstall: meowpkg
Found existing installation: meowpkg 0.0.1
Uninstalling meowpkg-0.0.1:
Successfully uninstalled meowpkg-0.0.1
Successfully installed meowpkg-0.0.1

关于python - 将包限制为 CPython - setup.cfg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65834145/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com