docxspec 0.0.1__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.
docxspec/__init__.py ADDED
@@ -0,0 +1,34 @@
1
+ # -*- coding: utf-8 -*-
2
+ """Public exports for docxspec."""
3
+
4
+ from .word_api import DocContainer, WordAPI
5
+ from .word_styles import (
6
+ BODY_STYLE,
7
+ CAPTION_STYLE,
8
+ MAIN_STYLE,
9
+ TABLE_BODY_STYLE,
10
+ TABLE_HEADER_STYLE,
11
+ CellStyle,
12
+ TableStyle,
13
+ TextStyle,
14
+ make_rich_text,
15
+ make_table_style,
16
+ )
17
+
18
+ __version__ = "0.0.1"
19
+
20
+ __all__ = [
21
+ "WordAPI",
22
+ "DocContainer",
23
+ "TextStyle",
24
+ "CellStyle",
25
+ "TableStyle",
26
+ "BODY_STYLE",
27
+ "CAPTION_STYLE",
28
+ "MAIN_STYLE",
29
+ "TABLE_BODY_STYLE",
30
+ "TABLE_HEADER_STYLE",
31
+ "make_rich_text",
32
+ "make_table_style",
33
+ "__version__",
34
+ ]