-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
82 lines (74 loc) · 2.13 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=67.8.0", "wheel>=0.40.0"]
[project]
name = "janis-pipelines.runner"
version = "v0.13.0"
description = "Easier way to run workflows, configurable across environments"
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"janis",
"workflows",
"assistant",
]
authors = [
{ name = "Michael Franklin", email = "[email protected]" },
{ name = "Grace Hall", email = "[email protected]" },
{ name = "Richard Lupat", email = "[email protected]" },
{ name = "Evan Thomas", email = "[email protected]" },
]
maintainers = [
{ name = "Grace Hall", email = "[email protected]" },
{ name = "Richard Lupat", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"janis-pipelines.core",
"janis-pipelines.bioinformatics",
"janis-pipelines.unix",
"janis-pipelines.templates >= 0.11.0",
"ruamel.yaml >= 0.12.4, <= 0.16.5",
"progressbar2",
"path",
"black",
"pre-commit",
"requests",
"python-dateutil",
"tabulate",
"cwltool",
"cwl-utils==0.15",
"blessed",
"regex",
]
requires-python = ">=3.10.5"
[project.optional-dependencies]
gcs = ["google-cloud-storage"]
ci = [
"codecov",
"coverage",
"requests_mock",
"nose_parameterized",
"keyring==21.4.0",
"setuptools >= 67.8.0",
"wheel",
"twine",
]
[project.urls]
repository = "https://github.com/PMCC-BioinformaticsCore/janis-assistant"
documentation = "https://janis.readthedocs.io/en/latest/"
[tool.setuptools.packages.find]
where = ["./"]
include = ["janis_assistant*"]
namespaces = false
[project.scripts]
janis = "janis_assistant.cli:process_args"
# NOTE
# The following line was not copied across from old setup.py (unknown purpose)
# entry_points={"janis.extension": ["assistant=janis_assistant"]}