Ai
1 Star 0 Fork 0

vim-plug-mirror/pydocstyle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
Hugo van Kemenade 提交于 2021-10-10 21:58 +08:00 . Add support for Python 3.10 (#554)
from setuptools import setup
# Do not update the version manually - it is managed by `bumpversion`.
version = '6.1.2rc'
requirements = [
'snowballstemmer',
]
extra_requirements = {
'toml': ['toml'],
}
setup(
name='pydocstyle',
version=version,
description="Python docstring style checker",
long_description=open('README.rst').read(),
license='MIT',
author='Amir Rachum',
author_email='amir@rachum.com',
url='https://github.com/PyCQA/pydocstyle/',
classifiers=[
'Intended Audience :: Developers',
'Environment :: Console',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
python_requires='>=3.6',
keywords='pydocstyle, PEP 257, pep257, PEP 8, pep8, docstrings',
packages=('pydocstyle',),
package_dir={'': 'src'},
package_data={'pydocstyle': ['data/*.txt']},
install_requires=requirements,
extras_require=extra_requirements,
entry_points={
'console_scripts': [
'pydocstyle = pydocstyle.cli:main',
],
},
project_urls={
'Release Notes': 'https://www.pydocstyle.org/en/latest/release_notes.html',
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vim-plug-mirror/pydocstyle.git
git@gitee.com:vim-plug-mirror/pydocstyle.git
vim-plug-mirror
pydocstyle
pydocstyle
master

搜索帮助