-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (36 loc) · 1.05 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
[tool.poetry]
name = "entest"
version = "0.1.16"
description = "Write dependent integration tests. See my pycon talk."
authors = ["Peteris Ratnieks <[email protected]>"]
readme = "README.md"
repository = "https://github.com/peteris-zealid/entest"
keywords = ["test", "integration-test"]
classifiers = ["Topic :: Software Development :: Testing", "Typing :: Typed"]
include = ["entest/py.typed"]
[tool.poetry.plugins] # Optional super table
[tool.poetry.plugins."console_scripts"]
entest = "entest.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
mypy = "^0.961"
pycln = "^1.3.3"
[tool.poetry.extras]
all = ["rich", "pysnooper", "stackprinter"]
rich = ["rich"]
pysnooper = ["pysnooper"]
stackprinter = ["stackprinter"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
skip-string-normalization = true
[tool.isort]
profile = "black"
ensure_newline_before_comments = true
line_length = 100
extend_skip = ["submodules"]