29 lines
772 B
TOML
29 lines
772 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backup = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "quman"
|
|
dynamic = ["version"] # the list of fields whose values are dicovered by the backend (eg __version__)
|
|
description = "compute cluster queue manager"
|
|
readme = "README.md"
|
|
keywords = ["son of grid engine", "slurm", "sge"]
|
|
license = {text = "MIT License"}
|
|
dependencies = [
|
|
# "cocluto >= 1.2"
|
|
"cocluto@git+https://git.ipr.univ-rennes.fr/cellinfo/cocluto"
|
|
]
|
|
requires-python = ">= 3.8"
|
|
authors = [
|
|
{name = "Guillaume Raffy", email = "guillaume.raffy@univ-rennes.fr"}
|
|
]
|
|
|
|
[project.scripts]
|
|
quman = "quman.main:main"
|
|
|
|
[project.urls]
|
|
Repository = "https://git.ipr.univ-rennes.fr/cellinfo/quman"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "quman.main.__version__"}
|