-
Notifications
You must be signed in to change notification settings - Fork 100
/
pyproject.toml
64 lines (58 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Slurm-web"
version = "4.0.0"
description = "Web interface to Slurm HPC clusters"
license = {text = "GPLv3+"}
requires-python = ">=3.6"
keywords = ["slurm", "hpc", "cluster"]
authors = [
{name = "Rémi Palancher", email = "remi@rackslab.io"},
]
dependencies = [
"Flask",
"requests",
"RFL.authentication >= 1.0.3",
"RFL.core >= 1.1.0",
"RFL.log",
"RFL.settings >= 1.1.1",
"RFL.web",
"setuptools"
]
readme = "README.md"
[project.optional-dependencies]
dev = [
"Flask-Cors",
"sshtunnel",
]
agent = [
"ClusterShell",
"prometheus-client",
"RacksDB[web]",
"redis",
]
gateway = [
"aiohttp",
"markdown",
]
tests = [
"pytest",
"pytest-cov",
"coverage",
]
[project.scripts]
slurm-web-agent = 'slurmweb.exec.agent:SlurmwebExecAgent.run'
slurm-web-gateway = 'slurmweb.exec.gateway:SlurmwebExecGateway.run'
slurm-web-ldap-check = 'slurmweb.exec.ldap:SlurmwebExecLDAPCheck.run'
slurm-web-gen-jwt-key = 'slurmweb.exec.genjwt:SlurmwebExecGenJWT.run'
slurm-web-show-conf = 'slurmweb.exec.showconf:SlurmwebExecShowConf.run'
[tool.setuptools.packages.find]
include = ['slurmweb*']
[project.urls]
"Homepage" = "https://github.com/rackslab/slurm-web"
"Bug Tracker" = "https://github.com/rackslab/slurm-web/issues"
[tool.black]
target-version = ['py36']
color = 1