-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 898 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "flake8-use-pathlib"
version = "0.2.1"
description = "A plugin for flake8 finding use of functions that can be replaced by pathlib module."
license = "MIT"
authors = ["Rodolphe Pelloux-Prayer <[email protected]>"]
readme = "README.md"
repository = "https://gitlab.com/RoPP/flake8-use-pathlib"
keywords = ["flake8", "linter", "pathlib"]
[tool.poetry.dependencies]
python = "^3.6"
flake8 = ">=3.6, <5"
dataclasses = {version = "^0.7", python = "~3.6"}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-flake8dir = "^2.2.0"
black = "^19.10b0"
mypy = "^0.782"
ipython = "^7.16.1"
rope = "^0.17.0"
flake8-bugbear = "^20.1.4"
flake8-black = "^0.2.0"
flake8-formatter-junit-xml = "^0.0.6"
pytest-sugar = "^0.9.4"
[tool.poetry.plugins."flake8.extension"]
PL = "flake8_use_pathlib:PathlibChecker"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"