forked from hichon78/macos-setup
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
51 lines (45 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
50
51
[tool.poetry]
name = "osx-setup"
version = "0.1.0"
description = "Automated MacOS Setup and Configuration"
authors = ["Hiep Ong"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
#ansible = "^8.3.0"
#ansible-modules-hashivault = "^5.1.1"
#websocket-client = "^1.6.2"
#jinja2-getenv-extension = "^1.0.2"
ansible = "^9.1.0"
ansible-core = "^2.16.2"
jinja2 = "^3.1.3"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
force-exclude = "gen,.git,.venv,.env,.githooks,__pycache__,docs,migrations,build"
line-length = 120
[tool.flake8]
# E231 is ignored to ensure flake8 compatibility with black
# docs => https://www.flake8rules.com/rules/E231.html
# W503 is also ignored to ensure flake8 compatibility with black
# docs => https://www.flake8rules.com/rules/W503.html
force-grid-wrap = 0
max-line-length = 120
multi-line-output = 3
exclude = """
.git,
venv,
.github,
__pycache__,
docs,
migrations,
build
"""
ignore = "E231,W503,E203"
include-trailing-comma = true
use-parentheses = true
[tool.isort]
multi_line_output = 3
profile = "black"