This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.55 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
54
55
56
57
58
[tool.black]
line-length = 100
skip-string-normalization = true
target-version = ["py39"]
exclude='\.eggs|\.git|\.mypy_cache|\.tox|\.venv|_build|buck-out|build|dist'
[tool.isort]
profile = "black"
line_length = 100
# Sort by name, don't cluster "from" vs "import"
force_sort_within_sections = true
# Combines "as" imports on the same line
combine_as_imports = true
[tool.mypy]
exclude = "test-app|test-client"
ignore_missing_imports = true
[tool.poetry]
name = "girder-pytest-pyppeteer"
version = "0.0.12"
description = "Pytest plugin for using pyppeteer to test Girder 4 applications"
authors = ["Kitware, Inc. <[email protected]>"]
license = "Apache License 2.0"
classifiers = ["Framework :: Pytest"]
[tool.poetry.dependencies]
python = "^3.7"
pytest = "^7.0.1"
# dependencies to run pyppeteer tests
pyppeteer = {version = "^1.0.2", optional = true}
pytest-asyncio = {version = "^0.18.1", optional = true}
mkdocs = {version = "^1.3.0", optional = true}
mkdocstrings = {version = "^0.18.1", optional = true}
mkdocs-material = {version = "^8.2.8", optional = true}
mkdocs-macros-plugin = {version = "^0.7.0", optional = true}
[tool.poetry.extras]
pyppeteer = [
"pyppeteer",
"pytest-asyncio"
]
docs = [
"mkdocs",
"mkdocstrings",
"mkdocs-material",
"mkdocs-macros-plugin"
]
[tool.poetry.plugins.pytest11]
pyppeteer = "girder_pytest_pyppeteer.plugin"
[tool.poetry.plugins.console_scripts]
pytest-docker = "girder_pytest_pyppeteer.main:run_pytest_docker_compose"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"