-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.44 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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "picomon"
version = "0.2.3"
description = "Beautiful TUI dashboard for monitoring GPUs (AMD, NVIDIA, Apple Silicon)"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Omar Kamali", email = "picomon@omarkama.li" }
]
requires-python = ">=3.9"
keywords = ["gpu", "monitor", "cli", "tui", "textual", "amd", "nvidia", "apple-silicon"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
]
dependencies = [
"textual>=0.89.0",
"psutil>=5.9.0",
"pyperclip>=1.8.0",
]
[project.urls]
Homepage = "https://github.com/omarkamali/picomon"
Issues = "https://github.com/omarkamali/picomon/issues"
Repository = "https://github.com/omarkamali/picomon"
[project.scripts]
picomon = "picomon.monitor:run"
[project.optional-dependencies]
dev = [
"pytest>=7",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
picomon = ["styles/*.tcss"]