-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.32 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "FireHPC"
version = "1.2.0a1"
description = "Instantly fire up container-based emulated HPC cluster"
license = {text = "GPLv3+"}
requires-python = ">=3.9"
keywords = ["slurm", "hpc", "cluster", "container", "ansible"]
authors = [
{name = "Rémi Palancher", email = "[email protected]"},
]
dependencies = [
"ansible-runner",
"dasbus",
"Faker",
"jinja2",
"paramiko",
"PyYAML",
"RacksDB",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: System :: Systems Administration",
]
readme = "README.md"
[project.scripts]
firehpc = 'firehpc.exec:FireHPCExec.run'
fhpc-emulate-slurm-usage = 'firehpc.emulator:FireHPCUsageEmulator.run'
[tool.setuptools.packages.find]
include = ['firehpc*']
[project.urls]
"Homepage" = "https://github.com/rackslab/firehpc"
"Bug Tracker" = "https://github.com/rackslab/firehpc/issues"
[tool.black]
target-version = ['py39']
color = 1
[tool.ruff]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
select = ["E", "F"]
target-version = "py39"