-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 2.18 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
60
61
62
63
64
65
66
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fluidtop"
version = "0.1.5"
description = "Real-time macOS hardware performance monitoring for Apple Silicon (M1/M2/M3/M4) with AI workload focus - enhanced asitop alternative"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Fluid Inference", email = "dev@fluidinference.com" },
]
keywords = [
"fluidtop", "fluidtop", "apple-silicon", "performance", "monitoring",
"m1", "m2", "m3", "m4", "macos", "gpu", "cpu", "ane", "neural-engine",
"asitop", "nvtop", "htop", "system-monitor", "hardware", "realtime",
"ai", "ml", "machine-learning", "artificial-intelligence", "workload",
"terminal", "cli", "command-line", "powermetrics", "memory"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Monitoring",
"Topic :: System :: Hardware",
"Topic :: System :: Systems Administration",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Debuggers",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"click>=8.2.0",
"textual>=3.0.0",
"textual-plotext>=1.0.0",
"psutil>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/FluidInference/fluidtop"
Repository = "https://github.com/FluidInference/fluidtop"
Issues = "https://github.com/FluidInference/fluidtop/issues"
Documentation = "https://github.com/FluidInference/fluidtop#readme"
Changelog = "https://github.com/FluidInference/fluidtop/releases"
[project.scripts]
fluidtop = "fluidtop.fluidtop:main"
[tool.hatch.build.targets.wheel]
packages = ["fluidtop"]
[tool.uv]
dev-dependencies = []
[tool.uv.sources]