-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "flake8-patch"
version = "0.1.0"
description = "A flake8 plugin checking for mocking issues."
authors = ["Luiz Geron <luiz@geron.me>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/geron/flake8-patch"
homepage = "https://pypi.org/project/flake8-patch"
keywords = ["flake8", "mock"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Plugins",
"Framework :: Flake8",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Mocking",
]
[tool.poetry.plugins."flake8.extension"]
MOC0 = "flake8_patch.plugin:PatchPlugin"
[tool.poetry.dependencies]
python = "^3.6"
flake8_plugin_utils = "^1.3.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
bump2version = "^1.0.0"
flake8 = "^3.0.0"
mypy = "^0.782"
pylint = "^2.6"
pytest = "^6.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"