-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
88 lines (79 loc) · 2.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "fabrictestbed-extensions"
version = "1.8.0"
description = "FABRIC Python Client Library and CLI Extensions"
authors = [
{ name = "Paul Ruth", email = "[email protected]" },
{ name = "Komal Thareja", email = "[email protected]" },
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"ipycytoscape",
"ipywidgets",
"ipyleaflet",
"ipycytoscape",
"tabulate",
"fabrictestbed==1.8.0",
"paramiko",
"jinja2>=3.0.0",
"pandas",
"numpy",
"ipython>=8.12.0",
"fabric_fss_utils>=1.5.1",
"recordclass==0.21.1",
"atomicwrites"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://fabric-testbed.net/"
Sources = "https://github.com/fabric-testbed/fabrictestbed-extensions"
Documentation = "https://fabric-fablib.readthedocs.io/"
ChangeLog = "https://github.com/fabric-testbed/fabrictestbed-extensions/blob/main/CHANGELOG.md"
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-autodoc-typehints",
"furo",
]
test = [
"black==24.*",
"isort==5.*",
"tox==4.*",
"pytest",
"coverage[toml]"
]
[tool.coverage.run]
branch = true
omit = ["fabrictestbed_extensions/tests/*"]
[tool.isort]
profile = "black"
src_paths = ["fabrictestbed_extensions", "docs/source/conf.py", "tests"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
# By default, run only unit tests when pytest is invoked. Integration
# tests will require some manual setup (namely token acquisition), and
# thus we can't run them on CI.
testpaths = ["tests/unit/"]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = true
ignore-magic = true
ignore-module = true
ignore-nested-functions = true
ignore-nested-classes = true
ignore-private = true
ignore-semiprivate = true
omit-covered-files = true
verbose = 0
fail-under = 92.6
exclude = ["tests", "fabrictestbed_extensions/editors"]