generated from 8percent/python-library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (39 loc) · 942 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
[tool.poetry]
name = "har2document"
version = "v0.1.2"
description = "Generate API document from HAR file"
authors = ["Jeongseop Lim <[email protected]>"]
maintainers = ["Jeongseop Lim <[email protected]>"]
readme = "README.md"
repository = "https://github.com/jseoplim/har2document"
license = "MIT"
packages = [
{ include = "har2document", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.10 <3.12"
haralyzer = "^2.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
isort = "^5.13.2"
tox = "^4.11.4"
flake8 = "^6.1.0"
pytest-cov = "^4.1.0"
black = "^23.12.0"
pre-commit = "^3.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Lint Configurations
[tool.isort]
profile = "black"
line_length = 88
[tool.black]
preview = true
line-length = 88
target-version = ['py310', 'py311']
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
testpaths = [
"tests",
]