oasm 0.1.1__tar.gz → 0.1.2__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: oasm
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Open ASseMbly tools
5
5
  Author-email: nzturn <nzturn@gmail.com>
6
6
  Keywords: asm,dsl
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "oasm" # 包名(需确保在PyPI唯一)
3
- version = "0.1.1" # 初始版本号
3
+ version = "0.1.2" # 初始版本号
4
4
  authors = [
5
5
  { name = "nzturn", email = "nzturn@gmail.com" },
6
6
  ]
@@ -5,6 +5,23 @@ __path__.reverse()
5
5
  __all__ = ['table','config','equal','expr','sym','context','flow','meta','multi','domain']
6
6
  from pprint import pformat
7
7
 
8
+ """
9
+ Open Assembly Tools (OASM) Core Module
10
+
11
+ This module provides fundamental data structures and utility classes that support
12
+ assembler configuration, expression processing, and flow control.
13
+
14
+ The module includes:
15
+ - table: Flexible list-dictionary hybrid container
16
+ - config: Configuration management with JSON persistence
17
+ - expr: Expression evaluation system
18
+ - context: Context management for assembly operations
19
+ - flow: Control flow management
20
+ - meta: Metaprogramming utilities
21
+ - multi: Multi-node assembly support
22
+ - domain: Domain-specific language constructs
23
+ """
24
+
8
25
  class table(list):
9
26
  def __init__(self, *args, **kwargs):
10
27
  super().__init__(args)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: oasm
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Open ASseMbly tools
5
5
  Author-email: nzturn <nzturn@gmail.com>
6
6
  Keywords: asm,dsl
File without changes
File without changes
File without changes