pycodedj 0.1.1__tar.gz → 0.1.2__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.
- {pycodedj-0.1.1 → pycodedj-0.1.2}/CHANGELOG.md +11 -0
- pycodedj-0.1.2/LICENSE +48 -0
- pycodedj-0.1.2/PKG-INFO +60 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/README.ja.md +1 -1
- {pycodedj-0.1.1 → pycodedj-0.1.2}/README.md +1 -1
- pycodedj-0.1.2/docs/CNAME +1 -0
- pycodedj-0.1.2/docs/index.html +886 -0
- pycodedj-0.1.2/docs/visualizer-concept.html +438 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/pyproject.toml +2 -1
- pycodedj-0.1.1/PKG-INFO +0 -11
- {pycodedj-0.1.1 → pycodedj-0.1.2}/.github/workflows/workflow.yml +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/.gitignore +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/docs/manual.ja.md +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/docs/manual.md +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/examples/club_set.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/examples/demo.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/examples/hello_sc.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/sc/synths.scd +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/src/pycodedj/__init__.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/src/pycodedj/__main__.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/src/pycodedj/analyzer.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/src/pycodedj/block_parser.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/src/pycodedj/engine.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/src/pycodedj/mapper.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/src/pycodedj/osc_bridge.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/src/pycodedj/watcher.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/tests/__init__.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/tests/test_analyzer.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/tests/test_block_parser.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/tests/test_engine.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/tests/test_mapper.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/tests/test_osc_bridge.py +0 -0
- {pycodedj-0.1.1 → pycodedj-0.1.2}/tests/test_watcher.py +0 -0
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2] - 2026-05-07
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- License changed to MIT + Commons Clause — personal use, modification, and live performances (including paid shows) are permitted; selling or commercially distributing the software itself is not
|
|
8
|
+
|
|
9
|
+
### Docs
|
|
10
|
+
|
|
11
|
+
- Add project homepage at `docs/index.html` with live demo animation and accurate engine-computed parameter values
|
|
12
|
+
- Add visualizer concept page at `docs/visualizer-concept.html` showing Canvas 2D animation synced to music parameters
|
|
13
|
+
|
|
3
14
|
## [0.1.1] - 2026-05-07
|
|
4
15
|
|
|
5
16
|
### Docs
|
pycodedj-0.1.2/LICENSE
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
MIT License with Commons Clause
|
|
2
|
+
|
|
3
|
+
"Commons Clause" License Condition v1.0
|
|
4
|
+
|
|
5
|
+
The Software is provided to you by the Licensor under the License,
|
|
6
|
+
as defined below, subject to the following condition.
|
|
7
|
+
|
|
8
|
+
Without limiting other conditions in the License, the grant of rights
|
|
9
|
+
under the License will not include, and the License does not grant to
|
|
10
|
+
you, the right to Sell the Software.
|
|
11
|
+
|
|
12
|
+
For purposes of the foregoing, "Sell" means practicing any or all of
|
|
13
|
+
the rights granted to you under the License to provide to third
|
|
14
|
+
parties, for a fee or other consideration (including without limitation
|
|
15
|
+
fees for hosting or consulting/support services related to the
|
|
16
|
+
Software), a product or service whose value derives, entirely or
|
|
17
|
+
substantially, from the functionality of the Software. Any license
|
|
18
|
+
notice or attribution required by the License must also include this
|
|
19
|
+
Commons Clause License Condition notice.
|
|
20
|
+
|
|
21
|
+
Software: PyCodeDJ
|
|
22
|
+
License: MIT
|
|
23
|
+
Licensor: Yuichi Kaneko
|
|
24
|
+
|
|
25
|
+
-------------------------------------------------------------------------------
|
|
26
|
+
|
|
27
|
+
MIT License
|
|
28
|
+
|
|
29
|
+
Copyright (c) 2026 Yuichi Kaneko
|
|
30
|
+
|
|
31
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
32
|
+
a copy of this software and associated documentation files (the
|
|
33
|
+
"Software"), to deal in the Software without restriction, including
|
|
34
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
35
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
36
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
37
|
+
the following conditions:
|
|
38
|
+
|
|
39
|
+
The above copyright notice and this permission notice shall be included
|
|
40
|
+
in all copies or substantial portions of the Software.
|
|
41
|
+
|
|
42
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
43
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
44
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
45
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
46
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
47
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
48
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
pycodedj-0.1.2/PKG-INFO
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pycodedj
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
License: MIT License with Commons Clause
|
|
5
|
+
|
|
6
|
+
"Commons Clause" License Condition v1.0
|
|
7
|
+
|
|
8
|
+
The Software is provided to you by the Licensor under the License,
|
|
9
|
+
as defined below, subject to the following condition.
|
|
10
|
+
|
|
11
|
+
Without limiting other conditions in the License, the grant of rights
|
|
12
|
+
under the License will not include, and the License does not grant to
|
|
13
|
+
you, the right to Sell the Software.
|
|
14
|
+
|
|
15
|
+
For purposes of the foregoing, "Sell" means practicing any or all of
|
|
16
|
+
the rights granted to you under the License to provide to third
|
|
17
|
+
parties, for a fee or other consideration (including without limitation
|
|
18
|
+
fees for hosting or consulting/support services related to the
|
|
19
|
+
Software), a product or service whose value derives, entirely or
|
|
20
|
+
substantially, from the functionality of the Software. Any license
|
|
21
|
+
notice or attribution required by the License must also include this
|
|
22
|
+
Commons Clause License Condition notice.
|
|
23
|
+
|
|
24
|
+
Software: PyCodeDJ
|
|
25
|
+
License: MIT
|
|
26
|
+
Licensor: Yuichi Kaneko
|
|
27
|
+
|
|
28
|
+
-------------------------------------------------------------------------------
|
|
29
|
+
|
|
30
|
+
MIT License
|
|
31
|
+
|
|
32
|
+
Copyright (c) 2026 Yuichi Kaneko
|
|
33
|
+
|
|
34
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
35
|
+
a copy of this software and associated documentation files (the
|
|
36
|
+
"Software"), to deal in the Software without restriction, including
|
|
37
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
38
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
39
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
40
|
+
the following conditions:
|
|
41
|
+
|
|
42
|
+
The above copyright notice and this permission notice shall be included
|
|
43
|
+
in all copies or substantial portions of the Software.
|
|
44
|
+
|
|
45
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
46
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
47
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
48
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
49
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
50
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
51
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
52
|
+
License-File: LICENSE
|
|
53
|
+
Requires-Python: >=3.10
|
|
54
|
+
Requires-Dist: python-osc>=1.8
|
|
55
|
+
Provides-Extra: dev
|
|
56
|
+
Requires-Dist: mypy; extra == 'dev'
|
|
57
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
58
|
+
Requires-Dist: ruff; extra == 'dev'
|
|
59
|
+
Provides-Extra: watch
|
|
60
|
+
Requires-Dist: watchdog>=3.0; extra == 'watch'
|
|
@@ -210,4 +210,4 @@ External visualisers such as Hydra can receive the same parameters on a separate
|
|
|
210
210
|
|
|
211
211
|
## License
|
|
212
212
|
|
|
213
|
-
MIT
|
|
213
|
+
MIT + Commons Clause — free to use, modify, and perform (including paid live performances). Selling or commercially distributing the software itself is not permitted. See [LICENSE](LICENSE) for details.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pycodedj.com
|