arkos2basic 0.1.0b3__tar.gz → 0.1.0b4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arkos2basic
3
- Version: 0.1.0b3
3
+ Version: 0.1.0b4
4
4
  Summary: Converts Arkos Tracker 3 text exports to CVBasic MUSIC blocks. Handles note transposition, variable note duration, percussion detection and intro/loop splitting. Targets ColecoVision, MSX and Sega SG-1000.
5
5
  Author: Francesco Maida
6
6
  Author-email: francesco.maida@gmail.com
@@ -21,6 +21,22 @@ Converts Arkos Tracker 3 text exports to CVBasic MUSIC blocks. Handles note tran
21
21
  ```
22
22
  pipx install arkos2basic
23
23
  ```
24
+
25
+ ### What if you don’t have pipx installed?
26
+
27
+ Depending on your OS, you can install pipx with this command:
28
+
29
+ #### MacOS
30
+
31
+ ```
32
+ brew install pipx
33
+ ```
34
+
35
+ #### Linux
36
+
37
+ ```
38
+ sudo apt install pipx
39
+ ```
24
40
 
25
41
  ## Usage
26
42
 
@@ -71,3 +87,7 @@ INCLUDE mymusic.bas
71
87
  INCLUDE mymusic_loop.bas
72
88
  ```
73
89
 
90
+ ## Requirements
91
+
92
+ Python 3.12 or better.
93
+
@@ -7,6 +7,22 @@ Converts Arkos Tracker 3 text exports to CVBasic MUSIC blocks. Handles note tran
7
7
  ```
8
8
  pipx install arkos2basic
9
9
  ```
10
+
11
+ ### What if you don’t have pipx installed?
12
+
13
+ Depending on your OS, you can install pipx with this command:
14
+
15
+ #### MacOS
16
+
17
+ ```
18
+ brew install pipx
19
+ ```
20
+
21
+ #### Linux
22
+
23
+ ```
24
+ sudo apt install pipx
25
+ ```
10
26
 
11
27
  ## Usage
12
28
 
@@ -56,3 +72,7 @@ LOOP WHILE 1
56
72
  INCLUDE mymusic.bas
57
73
  INCLUDE mymusic_loop.bas
58
74
  ```
75
+
76
+ ## Requirements
77
+
78
+ Python 3.12 or better.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arkos2basic"
3
- version = "0.1.0b3"
3
+ version = "0.1.0b4"
4
4
  description = "Converts Arkos Tracker 3 text exports to CVBasic MUSIC blocks. Handles note transposition, variable note duration, percussion detection and intro/loop splitting. Targets ColecoVision, MSX and Sega SG-1000."
5
5
  authors = [
6
6
  {name = "Francesco Maida",email = "francesco.maida@gmail.com"}