-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
89 lines (78 loc) · 2.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
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
89
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gridtk"
version = "2.0.2b0"
requires-python = ">=3.9"
description = "Grid-enabled job submitter and execution monitor for Idiap"
readme = "README.md"
license = {text = "GNU General Public License v3 (GPLv3)"}
authors = [
{name = "Andre Anjos", email = "[email protected]"},
{name = "Manuel Guenther", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"clapper",
"sqlalchemy<2",
]
[project.urls]
documentation = "https://gridtk.readthedocs.io/en/latest/"
homepage = "https://pypi.org/project/gridtk"
repository = "https://gitlab.idiap.ch/software/gridtk"
changelog = "https://gitlab.idiap.ch/software/gridtk/-/releases"
[project.optional-dependencies]
qa = ["pre-commit"]
doc = [
"sphinx",
"furo",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-inline-tabs",
"auto-intersphinx",
]
test = [
"pytest",
"pytest-cov",
"coverage",
]
[project.scripts]
jman = "gridtk.script.jman:main"
# access to SGE utilities from package installation
qconf = "gridtk.script.grid:main"
qsub = "gridtk.script.grid:main"
qdel = "gridtk.script.grid:main"
qstat = "gridtk.script.grid:main"
qrsh = "gridtk.script.grid:main"
qhost = "gridtk.script.grid:main"
[tool.setuptools]
zip-safe = true
package-dir = {"" = "src"}
[tool.distutils.bdist_wheel]
universal = true
[tool.isort]
profile = "black"
line_length = 80
order_by_type = true
lines_between_types = 1
[tool.black]
line-length = 80
[tool.pytest.ini_options]
addopts = [
"--cov=gridtk",
"--cov-report=term-missing",
"--import-mode=append",
]
junit_logging = "all"
junit_log_passing_tests = false