-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 865 Bytes
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
[tool.poetry]
name = "fileset"
version = "1.0.0"
description = "Commandline tool and python library for working with file sets"
authors = ["Per Böhlin <per.bohlin@devconsoft.se>"]
packages = [
{ include = "fileset" }
]
[tool.poetry.dependencies]
python = "^3.8"
click = "*"
coloredlogs = "*"
"ruamel.yaml" = "*"
[tool.poetry.dev-dependencies]
shiv = "*"
flake8 = "*"
yapf = "*"
flake8-tuple = "*"
flake8-blind-except = "*"
flake8-class-newline = "*"
flake8-comprehensions = "*"
flake8-deprecated = "*"
flake8-pep3101 = "*"
flake8-quotes = "*"
isort = "*"
pydocstyle = "*"
pytest-mock = "*"
pytest-cov = "*"
pytest-bdd = "*"
pytest-testinfra = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"fileset" = "fileset.__main__:entrypoint"
[tool.isort]
line_length = 100
multi_line_output = 2