pythonoscmd 26.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pythonoscmd-26.0.0/MANIFEST.in +13 -0
- pythonoscmd-26.0.0/PKG-INFO +44 -0
- pythonoscmd-26.0.0/pyproject.toml +92 -0
- pythonoscmd-26.0.0/pythonOScmd.py +54358 -0
- pythonoscmd-26.0.0/pythonoscmd.egg-info/PKG-INFO +44 -0
- pythonoscmd-26.0.0/pythonoscmd.egg-info/SOURCES.txt +9 -0
- pythonoscmd-26.0.0/pythonoscmd.egg-info/dependency_links.txt +1 -0
- pythonoscmd-26.0.0/pythonoscmd.egg-info/entry_points.txt +4 -0
- pythonoscmd-26.0.0/pythonoscmd.egg-info/requires.txt +17 -0
- pythonoscmd-26.0.0/pythonoscmd.egg-info/top_level.txt +4 -0
- pythonoscmd-26.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
include pythonOScmd.py
|
|
2
|
+
include logger_system.py
|
|
3
|
+
include plugin_system.py
|
|
4
|
+
include _core.py
|
|
5
|
+
include de421.bsp
|
|
6
|
+
include LICENSE
|
|
7
|
+
include README.md
|
|
8
|
+
include *.txt
|
|
9
|
+
|
|
10
|
+
recursive-include pythonOS_data *
|
|
11
|
+
recursive-include programs *
|
|
12
|
+
recursive-include plugins *
|
|
13
|
+
recursive-include pythonoscmd *
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pythonoscmd
|
|
3
|
+
Version: 26.0.0
|
|
4
|
+
Summary: pythonOS — Unified Terminal Operating System with 500+ TUI tools, system monitoring, security tools, media capabilities, and more.
|
|
5
|
+
Author: Ahmed Sayyed
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ahmedsayyed/pythonoscmd
|
|
8
|
+
Project-URL: Repository, https://github.com/ahmedsayyed/pythonoscmd
|
|
9
|
+
Keywords: terminal,tui,cli,operating-system,pythonos,system-monitor
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Environment :: Console :: Curses
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: System Administrators
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
17
|
+
Classifier: Operating System :: MacOS
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
25
|
+
Classifier: Topic :: System :: Monitoring
|
|
26
|
+
Classifier: Topic :: System :: Systems Administration
|
|
27
|
+
Classifier: Topic :: Utilities
|
|
28
|
+
Requires-Python: >=3.9
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
Requires-Dist: requests>=2.28
|
|
31
|
+
Requires-Dist: beautifulsoup4>=4.11
|
|
32
|
+
Requires-Dist: psutil>=5.9
|
|
33
|
+
Provides-Extra: full
|
|
34
|
+
Requires-Dist: requests>=2.28; extra == "full"
|
|
35
|
+
Requires-Dist: beautifulsoup4>=4.11; extra == "full"
|
|
36
|
+
Requires-Dist: psutil>=5.9; extra == "full"
|
|
37
|
+
Requires-Dist: Pillow>=9.0; extra == "full"
|
|
38
|
+
Requires-Dist: rich>=13.0; extra == "full"
|
|
39
|
+
Requires-Dist: textual>=0.40; extra == "full"
|
|
40
|
+
Requires-Dist: pygments>=2.14; extra == "full"
|
|
41
|
+
Requires-Dist: numpy>=1.24; extra == "full"
|
|
42
|
+
Provides-Extra: minimal
|
|
43
|
+
Requires-Dist: requests>=2.28; extra == "minimal"
|
|
44
|
+
Requires-Dist: beautifulsoup4>=4.11; extra == "minimal"
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pythonoscmd"
|
|
7
|
+
version = "26.0.0"
|
|
8
|
+
description = "pythonOS — Unified Terminal Operating System with 500+ TUI tools, system monitoring, security tools, media capabilities, and more."
|
|
9
|
+
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Ahmed Sayyed"}
|
|
14
|
+
]
|
|
15
|
+
keywords = ["terminal", "tui", "cli", "operating-system", "pythonos", "system-monitor"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Environment :: Console",
|
|
19
|
+
"Environment :: Console :: Curses",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"Intended Audience :: System Administrators",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Operating System :: POSIX :: Linux",
|
|
24
|
+
"Operating System :: MacOS",
|
|
25
|
+
"Programming Language :: Python :: 3",
|
|
26
|
+
"Programming Language :: Python :: 3.9",
|
|
27
|
+
"Programming Language :: Python :: 3.10",
|
|
28
|
+
"Programming Language :: Python :: 3.11",
|
|
29
|
+
"Programming Language :: Python :: 3.12",
|
|
30
|
+
"Programming Language :: Python :: 3.13",
|
|
31
|
+
"Programming Language :: Python :: 3.14",
|
|
32
|
+
"Topic :: System :: Monitoring",
|
|
33
|
+
"Topic :: System :: Systems Administration",
|
|
34
|
+
"Topic :: Utilities",
|
|
35
|
+
]
|
|
36
|
+
# Core dependencies — the script gracefully handles missing optional deps
|
|
37
|
+
dependencies = [
|
|
38
|
+
"requests>=2.28",
|
|
39
|
+
"beautifulsoup4>=4.11",
|
|
40
|
+
"psutil>=5.9",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[project.optional-dependencies]
|
|
44
|
+
# Full experience (all features enabled)
|
|
45
|
+
full = [
|
|
46
|
+
"requests>=2.28",
|
|
47
|
+
"beautifulsoup4>=4.11",
|
|
48
|
+
"psutil>=5.9",
|
|
49
|
+
"Pillow>=9.0",
|
|
50
|
+
"rich>=13.0",
|
|
51
|
+
"textual>=0.40",
|
|
52
|
+
"pygments>=2.14",
|
|
53
|
+
"numpy>=1.24",
|
|
54
|
+
]
|
|
55
|
+
# Minimal — just the TUI with no heavy deps
|
|
56
|
+
minimal = [
|
|
57
|
+
"requests>=2.28",
|
|
58
|
+
"beautifulsoup4>=4.11",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[project.urls]
|
|
62
|
+
Homepage = "https://github.com/ahmedsayyed/pythonoscmd"
|
|
63
|
+
Repository = "https://github.com/ahmedsayyed/pythonoscmd"
|
|
64
|
+
|
|
65
|
+
# ── Console entry points ─────────────────────────────────────────────
|
|
66
|
+
# After `pip install pythonoscmd` these commands become available:
|
|
67
|
+
# pythonoscmd → launches the full terminal OS
|
|
68
|
+
# pythonos → alias (shorter name)
|
|
69
|
+
# pos → quick alias
|
|
70
|
+
[project.scripts]
|
|
71
|
+
pythonoscmd = "pythonoscmd:main"
|
|
72
|
+
pythonos = "pythonoscmd:main"
|
|
73
|
+
pos = "pythonoscmd:main"
|
|
74
|
+
|
|
75
|
+
# ── Setuptools-specific config ────────────────────────────────────────
|
|
76
|
+
[tool.setuptools]
|
|
77
|
+
# We ship the thin wrapper package *and* include the monolith + data as
|
|
78
|
+
# package-data so everything ends up in site-packages together.
|
|
79
|
+
py-modules = ["pythonOScmd", "logger_system", "plugin_system", "_core"]
|
|
80
|
+
|
|
81
|
+
[tool.setuptools.packages.find]
|
|
82
|
+
include = ["pythonoscmd*"]
|
|
83
|
+
|
|
84
|
+
[tool.setuptools.package-data]
|
|
85
|
+
# Include all data files that the script expects at runtime
|
|
86
|
+
"*" = [
|
|
87
|
+
"pythonOS_data/**/*",
|
|
88
|
+
"programs/**/*",
|
|
89
|
+
"plugins/**/*",
|
|
90
|
+
"de421.bsp",
|
|
91
|
+
"*.txt",
|
|
92
|
+
]
|