arkos2basic 0.1.0b3__tar.gz → 0.1.0b5__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,11 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arkos2basic
3
- Version: 0.1.0b3
3
+ Version: 0.1.0b5
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
7
- Requires-Python: >=3.12,<4
7
+ Requires-Python: >=3.10,<4
8
8
  Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
9
11
  Classifier: Programming Language :: Python :: 3.12
10
12
  Classifier: Programming Language :: Python :: 3.13
11
13
  Classifier: Programming Language :: Python :: 3.14
@@ -21,6 +23,22 @@ Converts Arkos Tracker 3 text exports to CVBasic MUSIC blocks. Handles note tran
21
23
  ```
22
24
  pipx install arkos2basic
23
25
  ```
26
+
27
+ ### What if you don’t have pipx installed?
28
+
29
+ Depending on your OS, you can install pipx with this command:
30
+
31
+ #### MacOS
32
+
33
+ ```
34
+ brew install pipx
35
+ ```
36
+
37
+ #### Linux
38
+
39
+ ```
40
+ sudo apt install pipx
41
+ ```
24
42
 
25
43
  ## Usage
26
44
 
@@ -71,3 +89,7 @@ INCLUDE mymusic.bas
71
89
  INCLUDE mymusic_loop.bas
72
90
  ```
73
91
 
92
+ ## Requirements
93
+
94
+ Python 3.10 or better.
95
+
@@ -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.10 or better.
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "arkos2basic"
3
- version = "0.1.0b3"
3
+ version = "0.1.0b5"
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"}
7
7
  ]
8
8
  readme = "README.md"
9
- requires-python = ">=3.12,<4"
9
+ requires-python = ">=3.10,<4"
10
10
  dependencies = [
11
11
  "typer (>=0.26.7,<0.27.0)"
12
12
  ]