-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 905 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyopslib"
authors = [{name = "Alex Morega", email = "[email protected]"}]
dynamic = ["version", "description"]
license = {file = "LICENSE"}
readme = "Readme.md"
requires-python = ">=3.12"
dependencies = [
"ansible-core>=2.14.3,<2.15",
"beartype>=0.12.0",
"click>=8.1.3",
"requests>=2.28.2",
]
[project.optional-dependencies]
dev = [
"flit>=3.2,<4",
"keyring>=24.3.0",
"pyright>=1.1.337",
"pytest-black-ng>=0.4.1",
"pytest-isort>=3.1.0",
"pytest>=7.2.2",
"sphinx-autobuild>=2021.3.14",
"sphinx>=6.1.3",
]
[project.scripts]
opslib = "opslib.cli:main"
[tool.flit.module]
name = "opslib"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "--black --isort --ignore examples"
log_level = "DEBUG"
markers = [
"slow: marks tests as slow",
]