-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.12 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
[tool.poetry]
name = "bloodaxe"
version = "0.2.0"
description = "bloodaxe is the nice way to testing and metrifying api flows."
authors = ["rfunix <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
bloodaxe = "bloodaxe:app"
[tool.poetry.dependencies]
python = "^3.8"
toml = "^0.10.0"
httpx = "^0.12.1"
jinja2 = "^2.11.1"
typer = {extras = ["all"], version = "^0.1.0"}
tabulate = "^0.8.7"
[tool.poetry.dev-dependencies]
pytest = "5.3.5"
black = "^18.9b0"
ipython = "*"
ipdb = "*"
pytest-cov = "*"
pytest-randomly = "*"
coverage = "*"
pre-commit = "*"
pytest-mock = "*"
pytest-deadfixtures = "*"
pytest-sugar = "*"
pytest-httpserver = "*"
pytest-asyncio = "*"
asynctest = "*"
pytest-env = "*"
pytest-clarity = "^0.3.0-alpha.0"
[tool.black]
line-length = 110
target-version = ["py37"]
[tool.isort]
line_length = 110
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_localfolder = "tests,bloodaxe"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
default_section = "THIRDPARTY"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"