raw-docx 0.5.0__tar.gz → 0.6.0__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.
Files changed (41) hide show
  1. {raw_docx-0.5.0 → raw_docx-0.6.0}/PKG-INFO +1 -1
  2. raw_docx-0.6.0/src/raw_docx/__init__.py +28 -0
  3. raw_docx-0.6.0/src/raw_docx/__version__.py +1 -0
  4. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/PKG-INFO +1 -1
  5. raw_docx-0.5.0/src/raw_docx/__init__.py +0 -0
  6. raw_docx-0.5.0/src/raw_docx/__version__.py +0 -1
  7. {raw_docx-0.5.0 → raw_docx-0.6.0}/LICENSE +0 -0
  8. {raw_docx-0.5.0 → raw_docx-0.6.0}/README.md +0 -0
  9. {raw_docx-0.5.0 → raw_docx-0.6.0}/setup.cfg +0 -0
  10. {raw_docx-0.5.0 → raw_docx-0.6.0}/setup.py +0 -0
  11. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/docx_paragraph.py +0 -0
  12. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_document.py +0 -0
  13. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_docx.py +0 -0
  14. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_image.py +0 -0
  15. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_list.py +0 -0
  16. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_list_item.py +0 -0
  17. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_logger.py +0 -0
  18. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_paragraph.py +0 -0
  19. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_run.py +0 -0
  20. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_section.py +0 -0
  21. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_table.py +0 -0
  22. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_table_cell.py +0 -0
  23. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_table_row.py +0 -0
  24. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/SOURCES.txt +0 -0
  25. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/dependency_links.txt +0 -0
  26. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/requires.txt +0 -0
  27. {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/top_level.txt +0 -0
  28. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_docx_paragraph.py +0 -0
  29. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_integration.py +0 -0
  30. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_document.py +0 -0
  31. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_docx.py +0 -0
  32. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_image.py +0 -0
  33. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_list.py +0 -0
  34. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_list_item.py +0 -0
  35. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_logger.py +0 -0
  36. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_paragraph.py +0 -0
  37. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_run.py +0 -0
  38. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_section.py +0 -0
  39. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_table.py +0 -0
  40. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_table_cell.py +0 -0
  41. {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_table_row.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: raw_docx
3
- Version: 0.5.0
3
+ Version: 0.6.0
4
4
  Summary: A package for processing and analyzing raw document formats
5
5
  Home-page: https://github.com/daveih/raw_docx
6
6
  Author: Dave Iberson-Hurst
@@ -0,0 +1,28 @@
1
+ from .raw_docx import RawDocx
2
+ from .raw_document import RawDocument
3
+ from .raw_image import RawImage
4
+ from .raw_list_item import RawListItem
5
+ from .raw_list import RawList
6
+ from .raw_logger import RawLogger
7
+ from .raw_paragraph import RawParagraph
8
+ from .raw_run import RawRun
9
+ from .raw_section import RawSection
10
+ from .raw_table_cell import RawTableCell
11
+ from .raw_table_row import RawTableRow
12
+ from .raw_table import RawTable
13
+
14
+ __all__ = [
15
+ "RawDocx",
16
+ "RawDocument",
17
+ "RawImage",
18
+ "RawList",
19
+ "RawListItem",
20
+ "RawLogger",
21
+ "RawParagraph",
22
+ "RawRun",
23
+ "RawSection",
24
+ "RawTableCell",
25
+ "RawTableRow",
26
+ "RawTable"
27
+ ]
28
+
@@ -0,0 +1 @@
1
+ __package_version__ = "0.6.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: raw_docx
3
- Version: 0.5.0
3
+ Version: 0.6.0
4
4
  Summary: A package for processing and analyzing raw document formats
5
5
  Home-page: https://github.com/daveih/raw_docx
6
6
  Author: Dave Iberson-Hurst
File without changes
@@ -1 +0,0 @@
1
- __package_version__ = "0.5.0"
File without changes
File without changes
File without changes
File without changes
File without changes