-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
36 lines (32 loc) · 953 Bytes
/
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
[project]
name = "job defense shield"
version = "0.1.0"
authors = [
{ name="Jonathan D. Halverson", email="[email protected]" },
]
description = "Automated Slurm job alerts for underutilization"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"pandas",
]
license = "GPL-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2.0",
"Operating System :: OS Independent",
]
homepage = "https://github.com/PrincetonUniversity/job_defense_shield"
repository = "https://github.com/PrincetonUniversity/job_defense_shield"
keywords = ["slurm", "jobstats", "job monitoring", "email alerts"]
[project.optional-dependencies]
test = ["pytest>=6"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = ["error"]
log_cli_level = "info"
testpaths = [
"tests",
]