genmount 0.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.
- genmount-0.0.0/.gitignore +122 -0
- genmount-0.0.0/LICENSE +17 -0
- genmount-0.0.0/PKG-INFO +32 -0
- genmount-0.0.0/README.md +15 -0
- genmount-0.0.0/pyproject.toml +29 -0
- genmount-0.0.0/src/genmount/__init__.py +9 -0
- genmount-0.0.0/src/genmount/__main__.py +14 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# === 已有独立 Git 的子项目 (各自推各自的 GitHub) ===
|
|
2
|
+
chanshi-agent/
|
|
3
|
+
doorm-voice-wing/
|
|
4
|
+
DOORM-wechat/
|
|
5
|
+
healthflow/
|
|
6
|
+
hotel-rms-agent/
|
|
7
|
+
jlpapa.com/
|
|
8
|
+
outlive/
|
|
9
|
+
|
|
10
|
+
# === GitHub staging 目录 (各自推 doorm-ai/* 仓库) ===
|
|
11
|
+
github-WorldModel-OS-governance/
|
|
12
|
+
github-WorldModel-OS/
|
|
13
|
+
github-Finetune-Workbench/
|
|
14
|
+
|
|
15
|
+
# === GitHub 个人账户托管的独立子项目 (各自推 kelvintong88/* 或独立 org) ===
|
|
16
|
+
github-Diaryx.cn/
|
|
17
|
+
|
|
18
|
+
# === 大文件/归档 (不进版本控制) ===
|
|
19
|
+
*.zip
|
|
20
|
+
*.tar.gz
|
|
21
|
+
*.tar
|
|
22
|
+
*.rar
|
|
23
|
+
*.7z
|
|
24
|
+
|
|
25
|
+
# === toolkits master_index + tcm paragraph_sections (large jsonl) — local-only ===
|
|
26
|
+
toolkits/_master_index/index.jsonl
|
|
27
|
+
toolkits/tcm-toolkit/exports/for-worldmodel-os/paragraph_sections.jsonl
|
|
28
|
+
toolkits/tcm-toolkit/exports/for-finetune/paragraph_pairs.jsonl
|
|
29
|
+
# paragraph-level per-book outputs (288MB, rebuildable by build_paragraph_exports.py); keep only the small _index.json manifest
|
|
30
|
+
toolkits/tcm-toolkit/processed/_paragraph_sections/*
|
|
31
|
+
!toolkits/tcm-toolkit/processed/_paragraph_sections/_index.json
|
|
32
|
+
|
|
33
|
+
# === 数据库转储 (可能含敏感数据) ===
|
|
34
|
+
*.sql
|
|
35
|
+
*.sqlite
|
|
36
|
+
*.db
|
|
37
|
+
|
|
38
|
+
# === 系统/编辑器临时文件 ===
|
|
39
|
+
.DS_Store
|
|
40
|
+
Thumbs.db
|
|
41
|
+
desktop.ini
|
|
42
|
+
*.swp
|
|
43
|
+
*.swo
|
|
44
|
+
*~
|
|
45
|
+
.vscode/
|
|
46
|
+
.idea/
|
|
47
|
+
|
|
48
|
+
# === 密钥/环境变量 ===
|
|
49
|
+
.env
|
|
50
|
+
.env.local
|
|
51
|
+
.env.*.local
|
|
52
|
+
*.pem
|
|
53
|
+
*.key
|
|
54
|
+
secrets/
|
|
55
|
+
credentials/
|
|
56
|
+
|
|
57
|
+
# === 账户 / 密码 / 凭据文档 (中英文) ===
|
|
58
|
+
# 永远不能上传 GitHub —— 即使顶层 git 不推也要双重保险
|
|
59
|
+
*账户*
|
|
60
|
+
*账号*
|
|
61
|
+
*密码*
|
|
62
|
+
*凭据*
|
|
63
|
+
*credentials*
|
|
64
|
+
*passwords*
|
|
65
|
+
*api-keys*
|
|
66
|
+
*api_keys*
|
|
67
|
+
*tokens*.md
|
|
68
|
+
*tokens*.txt
|
|
69
|
+
DOORM-AI 账户.md
|
|
70
|
+
DOORM-AI 账号.md
|
|
71
|
+
DOORM-AI 密码.md
|
|
72
|
+
account-*.md
|
|
73
|
+
accounts-*.md
|
|
74
|
+
|
|
75
|
+
# === 私密 outreach 草稿(含 endorsement code / 推荐人邮件等)===
|
|
76
|
+
outreach-drafts*.md
|
|
77
|
+
arxiv-endorsement-*.md
|
|
78
|
+
|
|
79
|
+
# === 个人协议 / IP 协议(含身份证号、手印、签字)===
|
|
80
|
+
*AUTHOR-AGREEMENT*.docx
|
|
81
|
+
*AUTHOR-AGREEMENT*.pdf
|
|
82
|
+
*-signed.docx
|
|
83
|
+
*-signed.pdf
|
|
84
|
+
legal/private/
|
|
85
|
+
contracts/private/
|
|
86
|
+
|
|
87
|
+
# === Office 临时锁文件 ===
|
|
88
|
+
~$*.docx
|
|
89
|
+
~$*.xlsx
|
|
90
|
+
~$*.pptx
|
|
91
|
+
|
|
92
|
+
# === Python 常见 ===
|
|
93
|
+
__pycache__/
|
|
94
|
+
*.pyc
|
|
95
|
+
*.pyo
|
|
96
|
+
.venv/
|
|
97
|
+
venv/
|
|
98
|
+
env/
|
|
99
|
+
.pytest_cache/
|
|
100
|
+
.mypy_cache/
|
|
101
|
+
.ruff_cache/
|
|
102
|
+
|
|
103
|
+
# === Node 常见 ===
|
|
104
|
+
node_modules/
|
|
105
|
+
.next/
|
|
106
|
+
dist/
|
|
107
|
+
build/
|
|
108
|
+
|
|
109
|
+
# === 日志 ===
|
|
110
|
+
*.log
|
|
111
|
+
logs/
|
|
112
|
+
|
|
113
|
+
# western-medicine-toolkit open-access PDF binaries (62MB, copyrighted personal-use reports
|
|
114
|
+
# GOLD/GINA/KDIGO + CC-BY checklists; rebuildable by scripts/fetch_open_access_pdfs.py).
|
|
115
|
+
# Keep only the small .meta.txt sidecars + the fetch script as the record.
|
|
116
|
+
toolkits/western-medicine-toolkit/raw/_open-access/pdf/*.pdf
|
|
117
|
+
toolkits/western-medicine-toolkit/raw/_open-access/pdf/*.doc
|
|
118
|
+
toolkits/western-medicine-toolkit/raw/_open-access/pdf/*.docx
|
|
119
|
+
# extracted open-access text (~3.5MB; GOLD/GINA/KDIGO personal-use copyright;
|
|
120
|
+
# rebuildable by scripts/extract_open_access_text.py). Keep .meta.txt + _extracted_index.json.
|
|
121
|
+
toolkits/western-medicine-toolkit/raw/_open-access/pdf/*.pdf.txt
|
|
122
|
+
toolkits/western-medicine-toolkit/raw/_open-access/pdf/*.docx.txt
|
genmount-0.0.0/LICENSE
ADDED
|
@@ -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
|
genmount-0.0.0/PKG-INFO
ADDED
|
@@ -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
|
+
```
|
genmount-0.0.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# genmount
|
|
2
|
+
|
|
3
|
+
**Genmount OS client** — the user-side CLI / Python client for Genmount OS.
|
|
4
|
+
|
|
5
|
+
> ⚠️ **Placeholder release (0.0.0).** This reserves the PyPI name. The full
|
|
6
|
+
> client — local inference glue (Ollama), device authentication, and the
|
|
7
|
+
> `genmount init / chat / sync / doctor / upgrade` commands — ships later.
|
|
8
|
+
|
|
9
|
+
- Website: https://genmount.com
|
|
10
|
+
- Organization: DOORM AI PTE. LTD. — https://doorm.ai
|
|
11
|
+
- License: AGPL-3.0-or-later
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install genmount
|
|
15
|
+
```
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "genmount"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Genmount OS client (placeholder release — full client ships later)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "AGPL-3.0-or-later"
|
|
12
|
+
authors = [{ name = "DOORM AI PTE. LTD.", email = "service@doorm.ai" }]
|
|
13
|
+
keywords = ["genmount", "doorm", "tcm", "cli", "ai"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Healthcare Industry",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://genmount.com"
|
|
23
|
+
Organization = "https://doorm.ai"
|
|
24
|
+
|
|
25
|
+
[project.scripts]
|
|
26
|
+
genmount = "genmount.__main__:main"
|
|
27
|
+
|
|
28
|
+
[tool.hatch.build.targets.wheel]
|
|
29
|
+
packages = ["src/genmount"]
|
|
@@ -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"
|
|
@@ -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())
|