preflight-gpu 0.0.1.dev0__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.
@@ -0,0 +1,5 @@
1
+ # https://git-scm.com/docs/gitignore
2
+ # https://help.github.com/articles/ignoring-files
3
+ # Example .gitignore files: https://github.com/github/gitignore
4
+ /bower_components/
5
+ /node_modules/
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: preflight-gpu
3
+ Version: 0.0.1.dev0
4
+ Summary: Preflight — 파인튜닝을 시작하기 전, 지금 환경이 실제로 준비됐는지 확인하는 진단 CLI (이름 선점용 사전 릴리스 — 정식 릴리스는 2026-08-25 예정)
5
+ Author: Preflight team
6
+ License: MIT
7
+ Classifier: Development Status :: 2 - Pre-Alpha
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+
13
+ # Preflight
14
+
15
+ **파인튜닝을 시작하기 전, 지금 환경이 실제로 준비됐는지 확인하는 진단 CLI.**
16
+
17
+ GPU/CUDA 환경을 실제 연산(canary)으로 검증해 "설치는 됐는데 조용히 CPU로 도는" 류의
18
+ 숨은 실패를 실행 전에 포착합니다.
19
+
20
+ > ⚠️ **이 버전(0.0.1.dev0)은 패키지 이름 선점용 사전 릴리스입니다.**
21
+ > 정식 릴리스는 **2026년 8월 25일** 예정입니다. 그때 `pip install preflight-gpu`로
22
+ > 설치할 수 있습니다.
23
+
24
+ - 저장소: https://github.com/plzHynx500/preflight
25
+ - 라이선스: MIT
@@ -0,0 +1,13 @@
1
+ # Preflight
2
+
3
+ **파인튜닝을 시작하기 전, 지금 환경이 실제로 준비됐는지 확인하는 진단 CLI.**
4
+
5
+ GPU/CUDA 환경을 실제 연산(canary)으로 검증해 "설치는 됐는데 조용히 CPU로 도는" 류의
6
+ 숨은 실패를 실행 전에 포착합니다.
7
+
8
+ > ⚠️ **이 버전(0.0.1.dev0)은 패키지 이름 선점용 사전 릴리스입니다.**
9
+ > 정식 릴리스는 **2026년 8월 25일** 예정입니다. 그때 `pip install preflight-gpu`로
10
+ > 설치할 수 있습니다.
11
+
12
+ - 저장소: https://github.com/plzHynx500/preflight
13
+ - 라이선스: MIT
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ # hatchling 최신판(1.28+)은 Metadata-Version 2.5로 빌드하는데 PyPI가 아직 이
3
+ # 규격을 거부해(400 Bad Request, 실측) 2.4를 쓰는 버전대로 고정한다.
4
+ requires = ["hatchling~=1.27.0"]
5
+ build-backend = "hatchling.build"
6
+
7
+ [project]
8
+ name = "preflight-gpu"
9
+ version = "0.0.1.dev0"
10
+ description = "Preflight — 파인튜닝을 시작하기 전, 지금 환경이 실제로 준비됐는지 확인하는 진단 CLI (이름 선점용 사전 릴리스 — 정식 릴리스는 2026-08-25 예정)"
11
+ readme = "README.md"
12
+ license = { text = "MIT" }
13
+ requires-python = ">=3.9"
14
+ authors = [{ name = "Preflight team" }]
15
+ classifiers = [
16
+ "Development Status :: 2 - Pre-Alpha",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ ]
20
+
21
+ [tool.hatch.build.targets.wheel]
22
+ packages = ["src/preflight_check"]
@@ -0,0 +1,7 @@
1
+ """Preflight 이름 선점용 플레이스홀더 — 정식 릴리스는 2026-08-25 예정.
2
+
3
+ 실제 코드는 https://github.com/plzHynx500/preflight 에 있으며, 정식 릴리스부터는
4
+ `preflight` 패키지와 `preflight` 콘솔 명령이 설치됩니다.
5
+ """
6
+
7
+ __version__ = "0.0.1.dev0"