-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
32 lines (28 loc) · 885 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
[tool.poetry]
name = "ranger-tmux"
version = "1.0.8"
description = "Tmux integration for ranger"
authors = ["Josiah Outram Halstead <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/joouha/ranger_tmux"
classifiers = [
"Environment :: Plugins",
]
[tool.poetry.dependencies]
python = ">=2.7 <3 || >=3.6"
ranger-fm = "^1.9.3"
psutil = "^5.8.0"
pathlib2 = {version = "^2.3.6", python = ">2.7 <3"}
importlib-resources = {version = ">=3.3.1", python = ">=2.7,<3.9"}
importlib-metadata = {version = ">=2.1.2", python = ">=2.7,<3.8"}
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
black = {version = "^20.8b1", python = ">=3.6"}
flake8-black = "^0.2.3"
isort = ">=4.3.21"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."ranger.plugins"]
"ranger_tmux" = "ranger_tmux.plugin"