pycodedj 0.1.0__tar.gz → 0.1.1__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.
Files changed (28) hide show
  1. {pycodedj-0.1.0 → pycodedj-0.1.1}/CHANGELOG.md +7 -0
  2. {pycodedj-0.1.0 → pycodedj-0.1.1}/PKG-INFO +1 -1
  3. {pycodedj-0.1.0 → pycodedj-0.1.1}/README.ja.md +2 -0
  4. {pycodedj-0.1.0 → pycodedj-0.1.1}/README.md +2 -0
  5. {pycodedj-0.1.0 → pycodedj-0.1.1}/docs/manual.ja.md +2 -0
  6. {pycodedj-0.1.0 → pycodedj-0.1.1}/docs/manual.md +2 -0
  7. {pycodedj-0.1.0 → pycodedj-0.1.1}/pyproject.toml +1 -1
  8. {pycodedj-0.1.0 → pycodedj-0.1.1}/.github/workflows/workflow.yml +0 -0
  9. {pycodedj-0.1.0 → pycodedj-0.1.1}/.gitignore +0 -0
  10. {pycodedj-0.1.0 → pycodedj-0.1.1}/examples/club_set.py +0 -0
  11. {pycodedj-0.1.0 → pycodedj-0.1.1}/examples/demo.py +0 -0
  12. {pycodedj-0.1.0 → pycodedj-0.1.1}/examples/hello_sc.py +0 -0
  13. {pycodedj-0.1.0 → pycodedj-0.1.1}/sc/synths.scd +0 -0
  14. {pycodedj-0.1.0 → pycodedj-0.1.1}/src/pycodedj/__init__.py +0 -0
  15. {pycodedj-0.1.0 → pycodedj-0.1.1}/src/pycodedj/__main__.py +0 -0
  16. {pycodedj-0.1.0 → pycodedj-0.1.1}/src/pycodedj/analyzer.py +0 -0
  17. {pycodedj-0.1.0 → pycodedj-0.1.1}/src/pycodedj/block_parser.py +0 -0
  18. {pycodedj-0.1.0 → pycodedj-0.1.1}/src/pycodedj/engine.py +0 -0
  19. {pycodedj-0.1.0 → pycodedj-0.1.1}/src/pycodedj/mapper.py +0 -0
  20. {pycodedj-0.1.0 → pycodedj-0.1.1}/src/pycodedj/osc_bridge.py +0 -0
  21. {pycodedj-0.1.0 → pycodedj-0.1.1}/src/pycodedj/watcher.py +0 -0
  22. {pycodedj-0.1.0 → pycodedj-0.1.1}/tests/__init__.py +0 -0
  23. {pycodedj-0.1.0 → pycodedj-0.1.1}/tests/test_analyzer.py +0 -0
  24. {pycodedj-0.1.0 → pycodedj-0.1.1}/tests/test_block_parser.py +0 -0
  25. {pycodedj-0.1.0 → pycodedj-0.1.1}/tests/test_engine.py +0 -0
  26. {pycodedj-0.1.0 → pycodedj-0.1.1}/tests/test_mapper.py +0 -0
  27. {pycodedj-0.1.0 → pycodedj-0.1.1}/tests/test_osc_bridge.py +0 -0
  28. {pycodedj-0.1.0 → pycodedj-0.1.1}/tests/test_watcher.py +0 -0
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.1] - 2026-05-07
4
+
5
+ ### Docs
6
+
7
+ - Add cross-language links between English and Japanese README and manual using absolute GitHub URLs
8
+ - Rename publish workflow file to `workflow.yml`
9
+
3
10
  ## [0.1.0] - 2026-05-07
4
11
 
5
12
  ### Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycodedj
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: python-osc>=1.8
6
6
  Provides-Extra: dev
@@ -1,5 +1,7 @@
1
1
  # PyCodeDJ
2
2
 
3
+ [English README](https://github.com/kanekoyuichi/pycodedj/blob/main/README.md)
4
+
3
5
  Pythonコードの構造をリアルタイムに音楽へ変換するライブコーディング環境。ファイルを保存するたびに演奏が変わる。
4
6
 
5
7
  ---
@@ -1,5 +1,7 @@
1
1
  # PyCodeDJ
2
2
 
3
+ [日本語版 README はこちら](https://github.com/kanekoyuichi/pycodedj/blob/main/README.ja.md)
4
+
3
5
  A live-coding environment that translates Python code structure into music in real time. Every save changes the performance.
4
6
 
5
7
  ---
@@ -1,5 +1,7 @@
1
1
  # PyCodeDJ マニュアル
2
2
 
3
+ [English manual](https://github.com/kanekoyuichi/pycodedj/blob/main/docs/manual.md)
4
+
3
5
  > Python コードを書くと、リアルタイムに音が変わる
4
6
 
5
7
  ---
@@ -1,5 +1,7 @@
1
1
  # PyCodeDJ Manual
2
2
 
3
+ [日本語版マニュアルはこちら](https://github.com/kanekoyuichi/pycodedj/blob/main/docs/manual.ja.md)
4
+
3
5
  > Write Python code. Hear it change in real time.
4
6
 
5
7
  ---
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pycodedj"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  requires-python = ">=3.10"
5
5
  dependencies = [
6
6
  "python-osc>=1.8",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes