summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 0472fb05a96e8343926c60d44afb273f90ff8953 (plain)
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
[build-system]
requires = [
  "pip >= 19.3.1",
  "setuptools >= 42",
  "setuptools_scm[toml] >= 3.5.0",
  "setuptools_scm_git_archive >= 1.1",
  "wheel >= 0.33.6",
]
build-backend = "setuptools.build_meta"

[tool.black]
skip-string-normalization = true

[tool.isort]
profile = "black"
# known_first_party = "foo"

[tool.pytest.ini_options]
# ensure we treat warnings as error
filterwarnings = [
  # "error",
  "error::DeprecationWarning",
  "error::PendingDeprecationWarning"
]

[tool.setuptools_scm]
local_scheme = "no-local-version"