-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
85 lines (78 loc) · 2.37 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
[tool]
[tool.poetry]
name = "maestrowf"
version = "1.1.11dev1"
description = "A tool to easily orchestrate general computational workflows both locally and on supercomputers."
license = "MIT License"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: Unix", "Operating System :: MacOS :: MacOS X",
"Intended Audience :: Developers", "Intended Audience :: Education",
"Intended Audience :: Science/Research", "Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
homepage = "https://github.com/llnl/maestrowf"
documentation = "https://maestrowf.readthedocs.io/"
authors = [
"Francesco Di Natale <[email protected]>", "Francesco Di Natale"
]
maintainers = [
"Francesco Di Natale <[email protected]>", "Francesco Di Natale",
"Kevin C. Athey <[email protected]>", "Kevin C. Athey",
"Jessica Semler <[email protected]>", "Jessica Semler",
"Jeremy White <[email protected]>", "Jeremy White",
]
readme = "README.md"
packages = [
{ include = 'maestrowf'}
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
coloredlogs = "*"
dill = "*"
filelock = "*"
# importlib_metadata = {version = "*", python = "<3.8"}
jsonschema = ">=3.2.0"
packaging = ">=22.0"
pyyaml = ">=4.2b1"
rich = "*"
six = "*"
tabulate = "*"
mkdocs-mermaid2-plugin = "^1.1.1"
[tool.poetry.dev-dependencies]
coverage = "*"
mkdocs = "<2.0"
mkdocs-material = "*"
mkdocs-material-extensions = "*"
# mkdocs-mermaid2-plugin = "*"
mkdocstrings = "*"
mkdocstrings-python = "*"
mkdocs-gen-files = "*"
mkdocs-literate-nav = "*" # Make sub groups here for docs, formatting, etc?
mkdocs-glightbox = "*"
pymdown-extensions = "*"
flake8 = "*"
pydocstyle = "*"
pylint = "*"
tox = "*"
pytest = "*"
pytest-cov = "*"
pre-commit = "*"
tox-travis = "*"
tox-pyenv = "*"
[tool.poetry.plugins."console_scripts"]
"maestro" = "maestrowf.maestro:main"
"conductor" = "maestrowf.conductor:main"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/LLNL/maestrowf/issues"
"Discussions" = "https://github.com/LLNL/maestrowf/discussions"
[tool.black]
line-length = 79