CreativePython 0.0.0__tar.gz → 0.0.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 (22) hide show
  1. creativepython-0.0.1/MANIFEST.in +2 -0
  2. {creativepython-0.0.0 → creativepython-0.0.1}/PKG-INFO +3 -2
  3. {creativepython-0.0.0 → creativepython-0.0.1}/pyproject.toml +3 -2
  4. creativepython-0.0.1/src/CreativePython/AudioSample.py +743 -0
  5. creativepython-0.0.1/src/CreativePython/_RealtimeAudioPlayer.py +752 -0
  6. creativepython-0.0.1/src/CreativePython/gui.py +3562 -0
  7. creativepython-0.0.1/src/CreativePython/image.py +76 -0
  8. creativepython-0.0.1/src/CreativePython/images/de-brazzas-monkey.jpg +0 -0
  9. creativepython-0.0.1/src/CreativePython/midi.py +942 -0
  10. creativepython-0.0.1/src/CreativePython/music.py +4167 -0
  11. creativepython-0.0.1/src/CreativePython/osc.py +385 -0
  12. creativepython-0.0.1/src/CreativePython/timer.py +357 -0
  13. {creativepython-0.0.0 → creativepython-0.0.1}/src/CreativePython.egg-info/PKG-INFO +3 -2
  14. creativepython-0.0.1/src/CreativePython.egg-info/SOURCES.txt +18 -0
  15. creativepython-0.0.0/src/CreativePython/import_test.py +0 -6
  16. creativepython-0.0.0/src/CreativePython.egg-info/SOURCES.txt +0 -9
  17. {creativepython-0.0.0 → creativepython-0.0.1}/LICENSE +0 -0
  18. {creativepython-0.0.0 → creativepython-0.0.1}/README.md +0 -0
  19. {creativepython-0.0.0 → creativepython-0.0.1}/setup.cfg +0 -0
  20. {creativepython-0.0.0 → creativepython-0.0.1}/src/CreativePython/__init__.py +0 -0
  21. {creativepython-0.0.0 → creativepython-0.0.1}/src/CreativePython.egg-info/dependency_links.txt +0 -0
  22. {creativepython-0.0.0 → creativepython-0.0.1}/src/CreativePython.egg-info/top_level.txt +0 -0
@@ -0,0 +1,2 @@
1
+ graft src/CreativePython/images
2
+ recursive-exclude */.DS_Store
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: CreativePython
3
- Version: 0.0.0
3
+ Version: 0.0.1
4
4
  Summary: CreativePython is a Python-based software environment for developing algorithmic art projects.
5
5
  Author-email: "Dr. Bill Manaris" <manaris@cofc.edu>, Taj Ballinger <ballingertj@g.cofc.edu>, Trevor Ritchie <ritchiets@g.cofc.edu>
6
6
  Project-URL: Homepage, https://jythonmusic.me
@@ -10,6 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
10
10
  Requires-Python: >=3.12.4
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
+ Dynamic: license-file
13
14
 
14
15
  # CreativePython
15
16
 
@@ -1,10 +1,11 @@
1
1
  [build-system]
2
- requires = ["setuptools>=75.0", "pyglet>=2.1.2", "tinysoundfont>=0.3.6", "osc4py3>=1.0.8"]
2
+ requires = ["setuptools>=75.0", "tinysoundfont>=0.3.6", "osc4py3>=1.0.8", "mido>=1.3.3", "numpy>=2.3.2", "PySide6>=6.9.1", "sounddevice>=0.5.2", "soundfile>=0.13.1"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
+
5
6
  [project]
6
7
  name = "CreativePython"
7
- version = "0.0.0"
8
+ version = "0.0.1"
8
9
  authors = [
9
10
  { name="Dr. Bill Manaris", email="manaris@cofc.edu" },
10
11
  { name="Taj Ballinger", email="ballingertj@g.cofc.edu" },