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.
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/PKG-INFO +24 -2
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/README.md +20 -0
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/pyproject.toml +2 -2
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/src/arkos2basic/__init__.py +0 -0
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/src/arkos2basic/arkostracker/__init__.py +0 -0
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/src/arkos2basic/arkostracker/baseimport.py +0 -0
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/src/arkos2basic/arkostracker/cell.py +0 -0
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/src/arkos2basic/arkostracker/song.py +0 -0
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/src/arkos2basic/arkostracker/txtimport.py +0 -0
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/src/arkos2basic/cli.py +0 -0
- {arkos2basic-0.1.0b3 → arkos2basic-0.1.0b5}/src/arkos2basic/cvbasic.py +0 -0
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arkos2basic
|
|
3
|
-
Version: 0.1.
|
|
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.
|
|
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.
|
|
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.
|
|
9
|
+
requires-python = ">=3.10,<4"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"typer (>=0.26.7,<0.27.0)"
|
|
12
12
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|