File: pyproject.toml

package info (click to toggle)
python-imaplib2 3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: python: 1,616; sh: 45; makefile: 4
file content (40 lines) | stat: -rw-r--r-- 608 bytes parent folder | download
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.coverage.run]
source = ["imaplib2/tests"]
source_pkgs = ["imaplib2"]

[tool.coverage.paths]
source = [
    ".",
    ".tox/*/lib/*/site-packages/",
    '.tox\\*\\Lib\\site-packages\\',
]

[tool.tox]
legacy_tox_ini = """
[tox]
minversion = 3.23.0
requires =
    tox-wheel
    tox-gh-actions
envlist = py{36,37,38,39}
isolated_build = true

[gh-actions]
python =
    3.6: py36
    3.7: py37
    3.8: py38
    3.9: py39

[testenv]
wheel = True
deps = 
    pytest
    pytest-cov
commands = 
    pytest {posargs}
"""