-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (39 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (39 loc) · 1.13 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
41
42
43
44
45
46
47
48
49
[build-system]
requires = [ "poetry>=1.0.0" ]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "flake8-import-order-tbm"
description = "flake8-import-order style plugin for my (thebigmunch) taste."
version = "1.3.0"
license = "MIT"
authors = ["thebigmunch <mail@thebigmunch.me>"]
readme = "README.md"
repository = "https://github.com/thebigmunch/flake8-import-order-tbm"
homepage = "https://github.com/thebigmunch/flake8-import-order-tbm"
[tool.poetry.dependencies]
python = "^3.6"
flake8 = "^3.5"
flake8-import-order = "^0.18"
natsort = ">=5.0,<8.0"
flake8-builtins = { version = "^1.0", optional = true }
flake8-comprehensions = { version = ">=2.0,<=4.0", optional = true }
flake8-import-order-tbm = { version = "^1.0", optional = true }
nox = { version = "^2019", optional = true }
[tool.poetry.extras]
dev = [
"flake8",
"flake8-builtins",
"flake8-comprehensions",
"flake8-import-order",
"flake8-import-order-tbm",
"nox"
]
lint = [
"flake8",
"flake8-builtins",
"flake8-comprehensions",
"flake8-import-order",
"flake8-import-order-tbm"
]
[tool.poetry.plugins."flake8_import_order.styles"]
"tbm" = "flake8_import_order_tbm:TBM"