chord-progression-network 0.1.2__tar.gz → 0.1.4__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.
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/PKG-INFO +6 -3
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/README.md +4 -1
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/pyproject.toml +1 -1
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/src/chord_progression_network/__init__.py +1 -1
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/src/chord_progression_network.egg-info/PKG-INFO +6 -3
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/LICENSE +0 -0
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/setup.cfg +0 -0
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/src/chord_progression_network/chord_progression_network.py +0 -0
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/src/chord_progression_network.egg-info/SOURCES.txt +0 -0
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/src/chord_progression_network.egg-info/dependency_links.txt +0 -0
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/src/chord_progression_network.egg-info/requires.txt +0 -0
- {chord_progression_network-0.1.2 → chord_progression_network-0.1.4}/src/chord_progression_network.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: chord_progression_network
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: Network transition chord progressions
|
5
5
|
Author-email: Gene Boggs <gene.boggs@gmail.com>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -678,7 +678,7 @@ License: GNU GENERAL PUBLIC LICENSE
|
|
678
678
|
Public License instead of this License. But first, please read
|
679
679
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
680
680
|
|
681
|
-
Project-URL: Homepage, https://github.com/ology/python-chord-
|
681
|
+
Project-URL: Homepage, https://github.com/ology/python-chord-progression-network
|
682
682
|
Project-URL: Repository, https://github.com/ology/python-chord-progression-network.git
|
683
683
|
Project-URL: Issues, https://github.com/ology/python-chord-progression-network/issues
|
684
684
|
Classifier: Development Status :: 2 - Pre-Alpha
|
@@ -762,9 +762,12 @@ g = Generator(verbose=True)
|
|
762
762
|
phrase = g.generate()
|
763
763
|
|
764
764
|
s = stream.Score()
|
765
|
+
p = stream.Part()
|
765
766
|
|
766
767
|
for notes in phrase:
|
767
|
-
|
768
|
+
p.append(chord.Chord(notes, type='whole'))
|
769
|
+
|
770
|
+
s.append(p)
|
768
771
|
|
769
772
|
s.show()
|
770
773
|
```
|
@@ -64,9 +64,12 @@ g = Generator(verbose=True)
|
|
64
64
|
phrase = g.generate()
|
65
65
|
|
66
66
|
s = stream.Score()
|
67
|
+
p = stream.Part()
|
67
68
|
|
68
69
|
for notes in phrase:
|
69
|
-
|
70
|
+
p.append(chord.Chord(notes, type='whole'))
|
71
|
+
|
72
|
+
s.append(p)
|
70
73
|
|
71
74
|
s.show()
|
72
75
|
```
|
@@ -50,7 +50,7 @@ dynamic = ["version"]
|
|
50
50
|
# These URLs are displayed in a sidebar on PyPI. You don't have to have them,
|
51
51
|
# but they can help people learn more about your project. You can include as
|
52
52
|
# many named URLs as you want. They can be any URL, not just to GitHub.
|
53
|
-
Homepage = "https://github.com/ology/python-chord-
|
53
|
+
Homepage = "https://github.com/ology/python-chord-progression-network"
|
54
54
|
Repository = "https://github.com/ology/python-chord-progression-network.git"
|
55
55
|
Issues = "https://github.com/ology/python-chord-progression-network/issues"
|
56
56
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: chord_progression_network
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: Network transition chord progressions
|
5
5
|
Author-email: Gene Boggs <gene.boggs@gmail.com>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -678,7 +678,7 @@ License: GNU GENERAL PUBLIC LICENSE
|
|
678
678
|
Public License instead of this License. But first, please read
|
679
679
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
680
680
|
|
681
|
-
Project-URL: Homepage, https://github.com/ology/python-chord-
|
681
|
+
Project-URL: Homepage, https://github.com/ology/python-chord-progression-network
|
682
682
|
Project-URL: Repository, https://github.com/ology/python-chord-progression-network.git
|
683
683
|
Project-URL: Issues, https://github.com/ology/python-chord-progression-network/issues
|
684
684
|
Classifier: Development Status :: 2 - Pre-Alpha
|
@@ -762,9 +762,12 @@ g = Generator(verbose=True)
|
|
762
762
|
phrase = g.generate()
|
763
763
|
|
764
764
|
s = stream.Score()
|
765
|
+
p = stream.Part()
|
765
766
|
|
766
767
|
for notes in phrase:
|
767
|
-
|
768
|
+
p.append(chord.Chord(notes, type='whole'))
|
769
|
+
|
770
|
+
s.append(p)
|
768
771
|
|
769
772
|
s.show()
|
770
773
|
```
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|