genmount 0.0.0__py3-none-any.whl
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.
genmount/__init__.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
2
|
+
# Copyright (C) 2026 DOORM AI PTE. LTD. and Genmount OS Contributors
|
|
3
|
+
"""Genmount OS client — placeholder release (name reservation).
|
|
4
|
+
|
|
5
|
+
The full client (CLI + local Ollama glue + device auth) ships later;
|
|
6
|
+
see https://genmount.com. This 0.0.0 release only reserves the PyPI name.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.0"
|
genmount/__main__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
2
|
+
# Copyright (C) 2026 DOORM AI PTE. LTD. and Genmount OS Contributors
|
|
3
|
+
"""`genmount` CLI entry — placeholder."""
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def main() -> int:
|
|
9
|
+
print("Genmount OS — client coming soon. https://genmount.com")
|
|
10
|
+
return 0
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
if __name__ == "__main__":
|
|
14
|
+
raise SystemExit(main())
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: genmount
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Genmount OS client (placeholder release — full client ships later)
|
|
5
|
+
Project-URL: Homepage, https://genmount.com
|
|
6
|
+
Project-URL: Organization, https://doorm.ai
|
|
7
|
+
Author-email: "DOORM AI PTE. LTD." <service@doorm.ai>
|
|
8
|
+
License-Expression: AGPL-3.0-or-later
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: ai,cli,doorm,genmount,tcm
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Healthcare Industry
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# genmount
|
|
19
|
+
|
|
20
|
+
**Genmount OS client** — the user-side CLI / Python client for Genmount OS.
|
|
21
|
+
|
|
22
|
+
> ⚠️ **Placeholder release (0.0.0).** This reserves the PyPI name. The full
|
|
23
|
+
> client — local inference glue (Ollama), device authentication, and the
|
|
24
|
+
> `genmount init / chat / sync / doctor / upgrade` commands — ships later.
|
|
25
|
+
|
|
26
|
+
- Website: https://genmount.com
|
|
27
|
+
- Organization: DOORM AI PTE. LTD. — https://doorm.ai
|
|
28
|
+
- License: AGPL-3.0-or-later
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install genmount
|
|
32
|
+
```
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
genmount/__init__.py,sha256=NcQ5qU1_ZcWs5Ztu6OAD0NwmZ1hTg6vJl-2M6u_VuCs,351
|
|
2
|
+
genmount/__main__.py,sha256=JAu6ljU_C-ZBBbGbsL25cowN3ZNhJmizE3vCxcCQJSs,356
|
|
3
|
+
genmount-0.0.0.dist-info/METADATA,sha256=2j2ADSJaF8AmXD4t5ivruvL6J69N76hojpRPrcnn4s0,1103
|
|
4
|
+
genmount-0.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
5
|
+
genmount-0.0.0.dist-info/entry_points.txt,sha256=FxSAKNITvXZiyloecTO5m1xFJqLBsIigsxaspN-ktzY,52
|
|
6
|
+
genmount-0.0.0.dist-info/licenses/LICENSE,sha256=VBqnlxrlUOvyxki5gtbxqpzlJkSpjEZz4gpTEOof6Xo,701
|
|
7
|
+
genmount-0.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Genmount OS client
|
|
2
|
+
Copyright (C) 2026 DOORM AI PTE. LTD. and Genmount OS Contributors
|
|
3
|
+
|
|
4
|
+
This program is free software: you can redistribute it and/or modify it
|
|
5
|
+
under the terms of the GNU Affero General Public License as published by
|
|
6
|
+
the Free Software Foundation, either version 3 of the License, or (at your
|
|
7
|
+
option) any later version.
|
|
8
|
+
|
|
9
|
+
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
10
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
11
|
+
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
12
|
+
details.
|
|
13
|
+
|
|
14
|
+
The full license text is available at:
|
|
15
|
+
https://www.gnu.org/licenses/agpl-3.0.txt
|
|
16
|
+
|
|
17
|
+
SPDX-License-Identifier: AGPL-3.0-or-later
|