-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
50 lines (41 loc) · 1.15 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "sssd-test-framework"
authors = [
{ name="SSSD Team", email="sssd-maintainers@lists.fedoraproject.org" },
]
description = "Test framework for SSSD system tests"
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/SSSD/sssd-test-framework"
"Bug Tracker" = "https://github.com/SSSD/sssd-test-framework/issues"
[tool.hatch.build]
include = [
"/sssd_test_framework",
"/sssd_test_framework/py.typed",
"requirements.txt",
]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.version]
source = "vcs"
[tool.mypy]
exclude = "docs"
[[tool.mypy.overrides]]
module = ["jc.*", "ldap.*"]
ignore_missing_imports = true
[tool.isort]
line_length = 119
profile = "black"
add_imports = "from __future__ import annotations"
[tool.black]
line-length = 119