-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "slune-lib"
authors = [
{name = "Henry Bourne", email = "[email protected]"},
]
description = "A package for performing hyperparameter tuning with the SLURM scheduling system."
readme = "README.md"
requires-python = ">=3.1"
keywords = ["SLURM", "hyperparameter", "tuning", "machine", "learning", "optimisation"]
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
]
version = "0.0.2"
dependencies = [
'pandas',
'coverage',
'pytest'
]
[tool.setuptools_scm]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
python_classes = ["Test", "Describe"]
python_functions = ["test_", "it_", "and_", "but_", "they_"]
python_files = ["test_*.py",]
testpaths = ["tests", "integration"]
[tool.coverage.run]
source = ["src/slune"] # Adjust this to match your package source path
branch = true
omit = ["tests/*", "integration/*"] # Adjust as needed