generated from nnashiki/azfunctions-py-skelton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (42 loc) · 881 Bytes
/
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
[tool.poetry]
name = "azfunc"
version = "0.1.0"
description = ""
authors = ["Niten Nashiki <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
azure-functions = "^1.10.1"
backlog-schema = "^0.1.1"
pydantic = "^1.9.0"
azure-devops = "^6.0.0-beta.4"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
isort = "^5.10.1"
black = "^22.3.0"
taskipy = "^1.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 119
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.mypy_cache
| \.venv
| _build
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.taskipy.tasks]
black = "black ."
isort = "isort ."
# poetry run task test
test = "pytest . --log-cli-level=DEBUG"
# poetry run task fmt
fmt = { cmd = "task black && task isort", help = "format code" }