-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.23 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
60
61
[tool.poetry]
name = "dotbot-ifhostname"
version = "0.0.1"
description = ""
authors = ["John P. Lettman <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "!=6.0.0,!=5.4.0,!=5.4.1" # solves build issue with license files
dotbot = { git = "https://github.com/anishathalye/dotbot.git", tag = "v1.19.2"}
[tool.poetry.group.dev.dependencies]
black = { allow-prereleases = true, version = "*" }
isort = "*"
mypy = "*"
poetry = "^1.4.2"
pytest = "*"
pytest-cov = "*"
ruff = "*"
[tool.black]
line-length = 88
target-version = ["py310"]
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]
# compatible with psf/black
# https://pycqa.github.io/isort/docs/configuration/black_compatibility/
# https://github.com/psf/black/blob/master/docs/compatible_configs.md
profile = "black"
float_to_top = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = """
-ra
-v
--strict-markers
"""
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"