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.2"
 | |
| #    "cocluto@git+https://git.ipr.univ-rennes.fr/cellinfo/cocluto"
 | |
|    "starbench >= 1.0.1"
 | |
| #    "starbench@git+https://github.com/g-raffy/starbench"
 | |
| ]
 | |
| 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"]
 | |
| 
 | |
| [tool.setuptools.dynamic]
 | |
| version = {attr = "iprbench.main.__version__"}
 | |
| 
 | |
| [tool.setuptools.package-data]
 | |
| iprbench = ["resources/**/*"]
 |