voxmark 1.0.0__py3-none-any.whl

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.
voxmark/__init__.py ADDED
@@ -0,0 +1,23 @@
1
+ """
2
+ VoxMark — Markdown + VML Interactive Document Engine
3
+ Author: Divyanshu Sinha
4
+ Version: 1.0.0
5
+ """
6
+
7
+ __version__ = '1.0.0'
8
+ __author__ = 'Divyanshu Sinha'
9
+ __email__ = 'divyanshu.sinha631@gmail.com'
10
+
11
+ from .app import create_app
12
+ from .renderer import render
13
+ from .language import transform_vml
14
+ from .lexer import Lexer, Token, TK
15
+ from .parser import Parser, Document, Widget, TextNode, VarRef, parse
16
+ from .compiler import compile_vml, HTMLCompiler, CSSCompiler, WASMCompiler, CompileResult
17
+
18
+ __all__ = [
19
+ 'create_app', 'render', 'transform_vml',
20
+ 'Lexer', 'Token', 'TK',
21
+ 'Parser', 'Document', 'Widget', 'TextNode', 'VarRef', 'parse',
22
+ 'compile_vml', 'HTMLCompiler', 'CSSCompiler', 'WASMCompiler', 'CompileResult',
23
+ ]