hos-m2f 0.5.0__tar.gz → 0.5.1__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.
hos_m2f-0.5.1/PKG-INFO ADDED
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: hos-m2f
3
+ Version: 0.5.1
4
+ Summary: HOS-M2F: Markdown to Industry Standard Format Compiler Engine
5
+ Author: HOS Team
6
+ Author-email: team@hos-m2f.com
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: mistune>=2.0.0
13
+ Requires-Dist: pyyaml>=6.0
14
+ Requires-Dist: click>=8.0.0
15
+ Requires-Dist: ebooklib>=0.17.0
16
+ Requires-Dist: weasyprint>=54.0
17
+ Requires-Dist: python-docx>=0.8.11
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: classifier
21
+ Dynamic: description
22
+ Dynamic: description-content-type
23
+ Dynamic: requires-dist
24
+ Dynamic: requires-python
25
+ Dynamic: summary
26
+
27
+ HOS-M2F is a powerful compiler engine that converts Markdown files to various industry standard formats.
28
+
29
+ Key Features:
30
+ - Multiple output formats: PDF, DOCX, EPUB, and JSON
31
+ - Specialized modes for different document types:
32
+ - Book mode for book-length documents
33
+ - Paper mode for academic papers
34
+ - Patent mode for patent applications
35
+ - SOP (Standard Operating Procedure) mode for technical procedures
36
+ - Command-line interface for easy automation
37
+ - Semantic parsing for intelligent document structure
38
+ - Extensible architecture for custom renderers and modes
39
+
40
+ Use Cases:
41
+ - Convert technical documentation to professional formats
42
+ - Generate academic papers from Markdown sources
43
+ - Create standardized operating procedures
44
+ - Prepare patent applications with proper formatting
45
+ - Build eBooks from Markdown content
46
+
47
+ HOS-M2F simplifies the process of creating professionally formatted documents from plain Markdown, saving time and ensuring consistency across document types.
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: hos-m2f
3
+ Version: 0.5.1
4
+ Summary: HOS-M2F: Markdown to Industry Standard Format Compiler Engine
5
+ Author: HOS Team
6
+ Author-email: team@hos-m2f.com
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: mistune>=2.0.0
13
+ Requires-Dist: pyyaml>=6.0
14
+ Requires-Dist: click>=8.0.0
15
+ Requires-Dist: ebooklib>=0.17.0
16
+ Requires-Dist: weasyprint>=54.0
17
+ Requires-Dist: python-docx>=0.8.11
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: classifier
21
+ Dynamic: description
22
+ Dynamic: description-content-type
23
+ Dynamic: requires-dist
24
+ Dynamic: requires-python
25
+ Dynamic: summary
26
+
27
+ HOS-M2F is a powerful compiler engine that converts Markdown files to various industry standard formats.
28
+
29
+ Key Features:
30
+ - Multiple output formats: PDF, DOCX, EPUB, and JSON
31
+ - Specialized modes for different document types:
32
+ - Book mode for book-length documents
33
+ - Paper mode for academic papers
34
+ - Patent mode for patent applications
35
+ - SOP (Standard Operating Procedure) mode for technical procedures
36
+ - Command-line interface for easy automation
37
+ - Semantic parsing for intelligent document structure
38
+ - Extensible architecture for custom renderers and modes
39
+
40
+ Use Cases:
41
+ - Convert technical documentation to professional formats
42
+ - Generate academic papers from Markdown sources
43
+ - Create standardized operating procedures
44
+ - Prepare patent applications with proper formatting
45
+ - Build eBooks from Markdown content
46
+
47
+ HOS-M2F simplifies the process of creating professionally formatted documents from plain Markdown, saving time and ensuring consistency across document types.
hos_m2f-0.5.1/setup.py ADDED
@@ -0,0 +1,52 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="hos-m2f",
5
+ version="0.5.1",
6
+ description="HOS-M2F: Markdown to Industry Standard Format Compiler Engine",
7
+ long_description="""HOS-M2F is a powerful compiler engine that converts Markdown files to various industry standard formats.
8
+
9
+ Key Features:
10
+ - Multiple output formats: PDF, DOCX, EPUB, and JSON
11
+ - Specialized modes for different document types:
12
+ - Book mode for book-length documents
13
+ - Paper mode for academic papers
14
+ - Patent mode for patent applications
15
+ - SOP (Standard Operating Procedure) mode for technical procedures
16
+ - Command-line interface for easy automation
17
+ - Semantic parsing for intelligent document structure
18
+ - Extensible architecture for custom renderers and modes
19
+
20
+ Use Cases:
21
+ - Convert technical documentation to professional formats
22
+ - Generate academic papers from Markdown sources
23
+ - Create standardized operating procedures
24
+ - Prepare patent applications with proper formatting
25
+ - Build eBooks from Markdown content
26
+
27
+ HOS-M2F simplifies the process of creating professionally formatted documents from plain Markdown, saving time and ensuring consistency across document types.""",
28
+ long_description_content_type="text/markdown",
29
+ author="HOS Team",
30
+ author_email="team@hos-m2f.com",
31
+ packages=find_packages(),
32
+ include_package_data=True,
33
+ install_requires=[
34
+ "mistune>=2.0.0",
35
+ "pyyaml>=6.0",
36
+ "click>=8.0.0",
37
+ "ebooklib>=0.17.0",
38
+ "weasyprint>=54.0",
39
+ "python-docx>=0.8.11"
40
+ ],
41
+ entry_points={
42
+ "console_scripts": [
43
+ "hos-m2f=hos_m2f.cli.cli:main"
44
+ ]
45
+ },
46
+ classifiers=[
47
+ "Programming Language :: Python :: 3",
48
+ "License :: OSI Approved :: MIT License",
49
+ "Operating System :: OS Independent",
50
+ ],
51
+ python_requires='>=3.8'
52
+ )
hos_m2f-0.5.0/PKG-INFO DELETED
@@ -1,22 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: hos-m2f
3
- Version: 0.5.0
4
- Summary: HOS-M2F: Markdown to Industry Standard Format Compiler Engine
5
- Author: HOS Team
6
- Author-email: team@hos-m2f.com
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Requires-Python: >=3.8
11
- Requires-Dist: mistune>=2.0.0
12
- Requires-Dist: pyyaml>=6.0
13
- Requires-Dist: click>=8.0.0
14
- Requires-Dist: ebooklib>=0.17.0
15
- Requires-Dist: weasyprint>=54.0
16
- Requires-Dist: python-docx>=0.8.11
17
- Dynamic: author
18
- Dynamic: author-email
19
- Dynamic: classifier
20
- Dynamic: requires-dist
21
- Dynamic: requires-python
22
- Dynamic: summary
@@ -1,22 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: hos-m2f
3
- Version: 0.5.0
4
- Summary: HOS-M2F: Markdown to Industry Standard Format Compiler Engine
5
- Author: HOS Team
6
- Author-email: team@hos-m2f.com
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Requires-Python: >=3.8
11
- Requires-Dist: mistune>=2.0.0
12
- Requires-Dist: pyyaml>=6.0
13
- Requires-Dist: click>=8.0.0
14
- Requires-Dist: ebooklib>=0.17.0
15
- Requires-Dist: weasyprint>=54.0
16
- Requires-Dist: python-docx>=0.8.11
17
- Dynamic: author
18
- Dynamic: author-email
19
- Dynamic: classifier
20
- Dynamic: requires-dist
21
- Dynamic: requires-python
22
- Dynamic: summary
hos_m2f-0.5.0/setup.py DELETED
@@ -1,30 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name="hos-m2f",
5
- version="0.5.0",
6
- description="HOS-M2F: Markdown to Industry Standard Format Compiler Engine",
7
- author="HOS Team",
8
- author_email="team@hos-m2f.com",
9
- packages=find_packages(),
10
- include_package_data=True,
11
- install_requires=[
12
- "mistune>=2.0.0",
13
- "pyyaml>=6.0",
14
- "click>=8.0.0",
15
- "ebooklib>=0.17.0",
16
- "weasyprint>=54.0",
17
- "python-docx>=0.8.11"
18
- ],
19
- entry_points={
20
- "console_scripts": [
21
- "hos-m2f=hos_m2f.cli.cli:main"
22
- ]
23
- },
24
- classifiers=[
25
- "Programming Language :: Python :: 3",
26
- "License :: OSI Approved :: MIT License",
27
- "Operating System :: OS Independent",
28
- ],
29
- python_requires='>=3.8'
30
- )
File without changes
File without changes
File without changes
File without changes
File without changes