build: add README, pyproject.toml, package skeletons and smoke test

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-06 11:37:59 -04:00
parent 91e7746a89
commit e60823de1a
20 changed files with 139 additions and 0 deletions
View File
+19
View File
@@ -0,0 +1,19 @@
"""冒烟测试:验证包可导入。"""
def test_core_importable():
"""core 包可导入。"""
import core
assert core is not None
def test_app_importable():
"""app 包可导入。"""
import app
assert app is not None
def test_adapters_importable():
"""adapters 包可导入。"""
import adapters
assert adapters is not None