-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 887 Bytes
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
[tool.poetry]
name = "ignishpc"
version = "3.0.0"
description = "A unified framework to improve the interoperability between HPC and Big Data languages and programming models"
license = "LGPL-3.0-only"
authors = [
"César Pomar <cesaralfredo.pineiro@usc.es>",
"Juan C. Pichel <juancarlos.pichel@usc.es>"
]
readme = "README.rst"
repository = "https://github.com/ignishpc/client"
documentation = "https://ignishpc.readthedocs.io"
keywords = ["Big Data", "HPC", "MPI", "Multi-language", "Programming models"]
classifiers = [
"Topic :: Software Development",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.9"
"ruamel.yaml" = "^0.18.5"
docker = "^7.0"
python-hosts = "^1.0"
argcomplete = "^3.2.1"
GitPython = "^3.1.29"
[tool.poetry.scripts]
ignishpc = 'ignishpc.main:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"