-
Notifications
You must be signed in to change notification settings - Fork 281
/
pyproject.toml
50 lines (44 loc) · 1.32 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pylint.messages_control]
disable = [
"fixme",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"no-self-use",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-public-methods",
"too-many-return-statements",
]
[tool.pylint.format]
max-line-length = "88"
[tool.poetry]
name = "pathpicker"
version = "0.9.5"
description = "PathPicker accepts a wide range of input -- output from git commands, grep results, searches -- pretty much anything. After parsing the input, PathPicker presents you with a nice UI to select which files you're interested in. After that you can open them in your favorite editor or execute arbitrary commands."
authors = ["Peter Cottle <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.4"
flake8-black = "^0.2.1"
flake8-bugbear = "^20.11.1"
flake8-comprehensions = "^3.3.1"
flake8-copyright = "^0.2.2"
flake8-eradicate = "^1.0.0"
flake8-isort = "^4.0.0"
flake8-use-fstring = "^1.1"
isort = "^5.7.0"
mypy = "^0.800"
pylint = "^2.6.2"
pytest = "^6.2.2"
vulture = "^2.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"