xc-dl 0.1.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.
- xc_dl-0.1.0/.github/workflows/release.yml +41 -0
- xc_dl-0.1.0/.gitignore +26 -0
- xc_dl-0.1.0/LICENSE +674 -0
- xc_dl-0.1.0/PKG-INFO +17 -0
- xc_dl-0.1.0/README.md +276 -0
- xc_dl-0.1.0/assets/banner.png +0 -0
- xc_dl-0.1.0/pyproject.toml +26 -0
- xc_dl-0.1.0/tests/smoke_test.py +128 -0
- xc_dl-0.1.0/uv.lock +1143 -0
- xc_dl-0.1.0/xc_dl/__init__.py +1 -0
- xc_dl-0.1.0/xc_dl/__main__.py +5 -0
- xc_dl-0.1.0/xc_dl/api/__init__.py +0 -0
- xc_dl-0.1.0/xc_dl/api/client.py +190 -0
- xc_dl-0.1.0/xc_dl/api/models.py +119 -0
- xc_dl-0.1.0/xc_dl/api/query.py +32 -0
- xc_dl-0.1.0/xc_dl/cli.py +1207 -0
- xc_dl-0.1.0/xc_dl/config.py +132 -0
- xc_dl-0.1.0/xc_dl/core/__init__.py +0 -0
- xc_dl-0.1.0/xc_dl/core/converter.py +129 -0
- xc_dl-0.1.0/xc_dl/core/downloader.py +211 -0
- xc_dl-0.1.0/xc_dl/core/manifest.py +133 -0
- xc_dl-0.1.0/xc_dl/core/metadata.py +183 -0
- xc_dl-0.1.0/xc_dl/core/pipeline.py +621 -0
- xc_dl-0.1.0/xc_dl/core/progress.py +112 -0
- xc_dl-0.1.0/xc_dl/core/selector.py +99 -0
- xc_dl-0.1.0/xc_dl/core/taxonomy.py +102 -0
- xc_dl-0.1.0/xc_dl/core/verifier.py +125 -0
- xc_dl-0.1.0/xc_dl/data/taxonomy.json +1933 -0
- xc_dl-0.1.0/xc_dl/hpc/__init__.py +0 -0
- xc_dl-0.1.0/xc_dl/hpc/file_list.py +73 -0
- xc_dl-0.1.0/xc_dl/log_setup.py +111 -0
- xc_dl-0.1.0/xc_dl/paths.py +16 -0
- xc_dl-0.1.0/xc_dl/tui/__init__.py +0 -0
- xc_dl-0.1.0/xc_dl/tui/app.py +649 -0
- xc_dl-0.1.0/xc_dl/tui/cache.py +45 -0
- xc_dl-0.1.0/xc_dl/tui/taxonomy.py +215 -0
- xc_dl-0.1.0/xc_dl/tui/worldmap.py +139 -0
- xc_dl-0.1.0/xc_dl/utils.py +85 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- v*
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
pypi:
|
|
10
|
+
name: Publish to PyPI
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
environment:
|
|
13
|
+
name: pypi
|
|
14
|
+
permissions:
|
|
15
|
+
id-token: write
|
|
16
|
+
contents: read
|
|
17
|
+
steps:
|
|
18
|
+
- name: Checkout
|
|
19
|
+
uses: actions/checkout@v5
|
|
20
|
+
|
|
21
|
+
- name: Set up Python
|
|
22
|
+
uses: actions/setup-python@v5
|
|
23
|
+
with:
|
|
24
|
+
python-version: "3.11"
|
|
25
|
+
|
|
26
|
+
- name: Install uv
|
|
27
|
+
uses: astral-sh/setup-uv@v7
|
|
28
|
+
with:
|
|
29
|
+
enable-cache: true
|
|
30
|
+
|
|
31
|
+
- name: Build
|
|
32
|
+
run: uv build
|
|
33
|
+
|
|
34
|
+
- name: Smoke test (wheel)
|
|
35
|
+
run: uv run --isolated --no-project --with dist/*.whl tests/smoke_test.py
|
|
36
|
+
|
|
37
|
+
- name: Smoke test (source distribution)
|
|
38
|
+
run: uv run --isolated --no-project --with dist/*.tar.gz tests/smoke_test.py
|
|
39
|
+
|
|
40
|
+
- name: Publish
|
|
41
|
+
run: uv publish
|
xc_dl-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
|
|
8
|
+
# Virtual environments
|
|
9
|
+
.venv/
|
|
10
|
+
|
|
11
|
+
# IDE
|
|
12
|
+
.idea/
|
|
13
|
+
.vscode/
|
|
14
|
+
*.swp
|
|
15
|
+
|
|
16
|
+
# Logs & data
|
|
17
|
+
*.log
|
|
18
|
+
xc-dataset/
|
|
19
|
+
|
|
20
|
+
# OS
|
|
21
|
+
.DS_Store
|
|
22
|
+
Thumbs.db
|
|
23
|
+
|
|
24
|
+
# Config with secrets
|
|
25
|
+
xc-dl.yaml
|
|
26
|
+
.claude/worktrees
|