加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 362 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sorin Sbarnea 提交于 2021-06-14 13:36 . Adopt setuptools-scm packaging
#! /usr/bin/env python3
"""cookiecutter distutils configuration.
The presence of this file ensures the support
of pip editable mode *with setuptools only*.
"""
import setuptools
# https://github.com/jazzband/pip-tools/issues/1278
setuptools.setup(
use_scm_version={"local_scheme": "no-local-version"},
setup_requires=["setuptools_scm[toml]>=3.5.0"],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化