加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyproject.toml 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
Terrence Reilly 提交于 2021-04-04 16:02 . Update changelog, version number.
[tool.poetry]
name = "darglint"
version = "1.8.0"
description = "A utility for ensuring Google-style docstrings stay up to date with the source code."
authors = ["terrencepreilly <terrencepreilly@gmail.com>"]
license = "MIT"
keywords = ["documentation", "linter", "development"]
classifiers = [
'Intended Audience :: Developers',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Quality Assurance',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
tox = "^3.14"
flake8 = "^3.7"
neovim = "^0.3.1"
mypy = "^0.812"
pydocstyle = "^4.0"
twine = "^3.1"
[tool.poetry.scripts]
darglint = "darglint.driver:main"
[tool.poetry.plugins."flake8.extension"]
"DAR" = "darglint.flake8_entry:DarglintChecker"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化