-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
47 lines (39 loc) · 1.08 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pytest-mh"
authors = [
{ name="Pavel Březina", email="[email protected]" },
]
description = "Pytest multihost plugin"
readme = "readme.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[project.urls]
"Homepage" = "https://github.com/next-actions/pytest-mh"
"Bug Tracker" = "https://github.com/next-actions/pytest-mh/issues"
[tool.hatch.build]
include = [
"/pytest_mh",
"/pytest_mh/py.typed",
"requirements.txt",
]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.version]
source = "vcs"
[[tool.mypy.overrides]]
module = ["ldap.*", "pylibsshext.*", "pytest_output.*"]
ignore_missing_imports = true
[tool.isort]
line_length = 119
profile = "black"
add_imports = "from __future__ import annotations"
[tool.black]
line-length = 119