forked from napari/napari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (71 loc) · 1.49 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = [
"setuptools >= 42",
"wheel",
"setuptools_scm[toml]>=3.4"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "napari/_version.py"
[tool.briefcase]
project_name = "napari"
bundle = "com.napari"
author = "napari"
url = "https://napari.org/"
license = "BSD license"
# version populated in bundle.py
version = "0.0.1"
[tool.briefcase.app.napari]
formal_name = "napari"
description = "napari: a multi-dimensional image viewer"
sources = ['napari']
icon = "resources/icon"
# populated in bundle.py
requires = []
[tool.black]
target-version = ['py36', 'py37', 'py38']
skip-string-normalization = true
line-length = 79
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| examples
| vendored
)/
| napari/resources/qt.py
)
'''
[tool.check-manifest]
ignore = [
"bundle.py",
".cirrus.yml",
".pre-commit-config.yaml",
"asv.conf.json",
"codecov.yml",
"Makefile",
"napari/_version.py", # added during build by setuptools_scm
]
[tool.isort]
profile = "black"
line_length = 79
skip_glob = ["*examples/*", "*vendored*"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:ipykernel",
"ignore::DeprecationWarning:skimage.util.dtype:226",
"ignore:QFontMetrics.width::qtconsole",
"ignore:Accessing zmq Socket:DeprecationWarning:jupyter_client"
]
markers = [
"perfmon: marks tests that require perfmon to be enabled"
]