42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backup = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "iprbench"
|
|
dynamic = ["version"] # the list of fields whose values are dicovered by the backend (eg __version__)
|
|
description = "benchmarks for IPR (Institut de Physique de Rennes) cluster"
|
|
readme = "README.md"
|
|
keywords = ["benchmark", "hpc", "parallel", 'openmp']
|
|
license = {text = "MIT License"}
|
|
dependencies = [
|
|
"pandas",
|
|
"matplotlib",
|
|
"sqlalchemy",
|
|
# "cocluto >= 1.7",
|
|
"cocluto@git+https://git.ipr.univ-rennes.fr/cellinfo/cocluto@v1.7.0",
|
|
# "starbench >= 1.0.4"
|
|
"starbench@git+https://github.com/g-raffy/starbench@v1.0.4",
|
|
]
|
|
requires-python = ">= 3.8"
|
|
authors = [
|
|
{name = "Guillaume Raffy", email = "guillaume.raffy@univ-rennes.fr"}
|
|
]
|
|
|
|
[project.scripts]
|
|
clusterbench-submit = "iprbench.clusterbench:main"
|
|
iprbench-run = "iprbench.main:main"
|
|
showresults = "iprbench.benchmarks.showresults:main"
|
|
|
|
[project.urls]
|
|
Repository = "https://github.com/g-raffy/starbench"
|
|
|
|
[tool.setuptools]
|
|
packages = ["iprbench", "iprbench.benchmarks", "iprbench.resultsdb"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "iprbench.version.__version__"}
|
|
|
|
[tool.setuptools.package-data]
|
|
iprbench = ["resources/**/*"]
|