pyproject.toml (44 lines of code) (raw):

[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.2" 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 <pcottle@fb.com>"] 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"