evez-daw-agent 1.0.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.
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: evez-daw-agent
3
+ Version: 1.0.0
4
+ Summary: EVEZ evez-daw-agent
5
+ Author: Steven Crawford-Maggard
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # ⚡ EVEZ DAW Agent
11
+
12
+ Music synthesis from pure math. No samples. No paid APIs. $0 cost.
13
+
14
+ ## Genres
15
+
16
+ - **Breakcore** — 170 BPM, fragmented beats
17
+ - **Dubstep** — 140 BPM, sub-bass oscillators
18
+ - **Phonk** — 130 BPM, Memphis rap influence
19
+ - **404 Architecture** — 200 BPM, HTTP error aesthetics
20
+
21
+ ## Install
22
+
23
+ ```bash
24
+ pip install evez-daw-agent
25
+ ```
26
+
27
+ ## License
28
+
29
+ MIT
@@ -0,0 +1,20 @@
1
+ # ⚡ EVEZ DAW Agent
2
+
3
+ Music synthesis from pure math. No samples. No paid APIs. $0 cost.
4
+
5
+ ## Genres
6
+
7
+ - **Breakcore** — 170 BPM, fragmented beats
8
+ - **Dubstep** — 140 BPM, sub-bass oscillators
9
+ - **Phonk** — 130 BPM, Memphis rap influence
10
+ - **404 Architecture** — 200 BPM, HTTP error aesthetics
11
+
12
+ ## Install
13
+
14
+ ```bash
15
+ pip install evez-daw-agent
16
+ ```
17
+
18
+ ## License
19
+
20
+ MIT
@@ -0,0 +1 @@
1
+ # evez-daw-agent
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: evez-daw-agent
3
+ Version: 1.0.0
4
+ Summary: EVEZ evez-daw-agent
5
+ Author: Steven Crawford-Maggard
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # ⚡ EVEZ DAW Agent
11
+
12
+ Music synthesis from pure math. No samples. No paid APIs. $0 cost.
13
+
14
+ ## Genres
15
+
16
+ - **Breakcore** — 170 BPM, fragmented beats
17
+ - **Dubstep** — 140 BPM, sub-bass oscillators
18
+ - **Phonk** — 130 BPM, Memphis rap influence
19
+ - **404 Architecture** — 200 BPM, HTTP error aesthetics
20
+
21
+ ## Install
22
+
23
+ ```bash
24
+ pip install evez-daw-agent
25
+ ```
26
+
27
+ ## License
28
+
29
+ MIT
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ evez-daw-agent/__init__.py
5
+ evez_daw_agent.egg-info/PKG-INFO
6
+ evez_daw_agent.egg-info/SOURCES.txt
7
+ evez_daw_agent.egg-info/dependency_links.txt
8
+ evez_daw_agent.egg-info/top_level.txt
9
+ src/evez_daw_agent/__init__.py
10
+ src/evez_daw_agent/cli.py
@@ -0,0 +1,4 @@
1
+ build
2
+ dist
3
+ evez-daw-agent
4
+ src
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "evez-daw-agent"
7
+ version = "1.0.0"
8
+ description = "EVEZ evez-daw-agent"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.10"
12
+ authors = [{name = "Steven Crawford-Maggard"}]
13
+
14
+ [tool.setuptools.packages.find]
15
+ where = ["."]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ from setuptools import setup, find_packages
2
+ setup(
3
+ name="placeholder",
4
+ version="1.0.0",
5
+ packages=find_packages(),
6
+ )
@@ -0,0 +1,6 @@
1
+ """
2
+ EVEZ DAW Agent — autonomous music generation.
3
+ Breakcore, dubstep, phonk from pure math. Zero samples needed.
4
+ """
5
+ __version__ = "1.0.0"
6
+ __author__ = "Steven Crawford-Maggard"
@@ -0,0 +1,11 @@
1
+ """CLI entry point for evez-daw-agent."""
2
+ import sys
3
+
4
+ def main():
5
+ print("EVEZ DAW Agent v1.0.0")
6
+ print("Autonomous music generation — breakcore, dubstep, phonk from pure math.")
7
+ print("See https://evez-os.ai for full documentation.")
8
+ return 0
9
+
10
+ if __name__ == "__main__":
11
+ sys.exit(main())