-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.76 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "slurm-aio-gui"
version = "1.1.2"
authors = [{ name = "Morelli-01", email = "nicolamorelli30008@gmail.com" }]
description = "A modern, cross-platform GUI for managing and monitoring SLURM clusters."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT License" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
]
# These dependencies are taken directly from your requirements.txt
dependencies = [
"bcrypt==4.3.0",
"certifi==2025.4.26",
"cffi==1.17.1",
"charset-normalizer==3.4.2",
"cryptography==45.0.3",
"idna==3.10",
"paramiko==3.5.1",
"pycparser==2.22",
"PyNaCl==1.5.0",
"PyQt6==6.9.0",
"PyQt6-Qt6==6.9.0",
"PyQt6_sip==13.10.2",
"requests==2.32.3",
"urllib3==2.4.0",
"packaging",
"toml",
]
[project.urls]
"Homepage" = "https://github.com/Morelli-01/slurm_gui"
"Bug Tracker" = "https://github.com/Morelli-01/slurm_gui/issues"
# This part tells setuptools how to find your packages and entry point
[tool.setuptools]
packages = ["controllers", "core", "models", "views", "widgets", "src_static"]
py-modules = ["utils", "main_application"]
[tool.setuptools.package-data]
"core" = ["py.typed"]
"src_static" = ["*.*", "*.svg", "*.ini", "*.txt", "*.png"]
[project.gui-scripts]
slurm-aio-gui = "main_application:main"