35 lines
909 B
TOML
35 lines
909 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backup = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "cocluto"
|
|
dynamic = ["version"] # the list of fields whose values are dicovered by the backend (eg __version__)
|
|
description = "compute cluster utility tools"
|
|
readme = "README.md"
|
|
keywords = ["sql", "hpc", "pdu", "power supply", "inventory", "son of grid engine"]
|
|
license = {text = "MIT License"}
|
|
dependencies = [
|
|
"pygraphviz", # requires apt install graphviz-dev
|
|
"mysqlclient",
|
|
]
|
|
requires-python = ">= 3.8"
|
|
authors = [
|
|
{name = "Guillaume Raffy", email = "guillaume.raffy@univ-rennes.fr"}
|
|
]
|
|
|
|
[project.scripts]
|
|
quman = "cocluto.quman:main"
|
|
|
|
[project.urls]
|
|
Repository = "https://git.ipr.univ-rennes.fr/cellinfo/cocluto"
|
|
|
|
[tool.setuptools]
|
|
packages = ["cocluto"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "cocluto.version.__version__"}
|
|
|
|
[tool.setuptools.package-data]
|
|
iprbench = ["resources/**/*"]
|