-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
69 lines (59 loc) · 1.78 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
authors = [{ name = "Dan Søndergaard", email = "das@genome.au.dk" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: System :: Distributed Computing",
"Topic :: Utilities",
]
dynamic = ["version", "description"]
name = "gwf"
readme = "README.rst"
requires-python = ">=3.7"
dependencies = [
"click",
"click-plugins",
"attrs",
# Used to discover plugins and backends, see:
# https://packaging.python.org/guides/creating-and-discovering-plugins/
"importlib_metadata>4.6; python_version<'3.8'",
]
[project.optional-dependencies]
dev = ["black", "isort", "nox"]
[project.scripts]
gwf = "gwf.cli:main"
[project.entry-points."gwf.plugins"]
cancel = "gwf.plugins.cancel:cancel"
clean = "gwf.plugins.clean:clean"
config = "gwf.plugins.config:config"
info = "gwf.plugins.info:info"
logs = "gwf.plugins.logs:logs"
run = "gwf.plugins.run:run"
status = "gwf.plugins.status:status"
touch = "gwf.plugins.touch:touch"
workers = "gwf.plugins.workers:workers"
[project.entry-points."gwf.backends"]
local = "gwf.backends.local:setup"
sge = "gwf.backends.sge:setup"
slurm = "gwf.backends.slurm:setup"
lsf = "gwf.backends.lsf:setup"
pbs = "gwf.backends.pbs:setup"
[project.urls]
Home = "https://gwf.app"
[tool.isort]
profile = "black"
[tool.coverage.run]
branch = true
parallel = true
[tool.coverage.report]
sort = "Cover"
exclude_lines = ["@attrs"]