forked from snakemake/snakefmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.4 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
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "snakefmt"
version = "0.1.3"
description = "The uncompromising Snakemake code formatter"
authors = ["Michael Hall <[email protected]>", "Brice Letcher <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/snakemake/snakefmt"
repository = "https://github.com/snakemake/snakefmt"
documentation = "https://github.com/snakemake/snakefmt/blob/master/README.md"
keywords = ["python", "snakemake", "code", "formatter", "parser", "workflow", "management", "systems", "black"]
[tool.poetry.scripts]
snakefmt = 'snakefmt.snakefmt:main'
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.1.1"
black = {version = "^19.10b0", allow-prereleases = true}
toml = "^0.10.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.8.1"
flake8 = "^3.7.9"
snakemake = "^5.14.0"
isort = "^5.1.0"
[tool.poetry.urls]
"Snakemake Documentation" = "https://snakemake.readthedocs.io/"
"Snakemake Repository" = "https://github.com/snakemake/snakemake"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"