markdown_convert 1.2.20__tar.gz → 1.2.21__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: markdown_convert
3
- Version: 1.2.20
3
+ Version: 1.2.21
4
4
  Summary: Convert Markdown files to PDF from your command line.
5
5
  Project-URL: homepage, https://github.com/Julynx/markdown_convert
6
6
  Author-email: Julio Cabria <juliocabria@tutanota.com>
@@ -0,0 +1,11 @@
1
+ """
2
+ This file is used to import all the functions from the modules and make them
3
+ available to the user.
4
+ Author: @julynx
5
+ """
6
+
7
+ from .modules.convert import convert, live_convert, convert_text
8
+ from .__main__ import main
9
+
10
+ __version__ = "1.2.15"
11
+ __all__ = ["convert", "live_convert", "convert_text", "main"]
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "markdown_convert"
7
- version = "1.2.20"
7
+ version = "1.2.21"
8
8
  description = "Convert Markdown files to PDF from your command line."
9
9
  authors = [
10
10
  { name = "Julio Cabria", email = "juliocabria@tutanota.com" },
@@ -33,6 +33,7 @@ markdown-convert = "markdown_convert.__main__:main"
33
33
 
34
34
  [tool.hatch.build.targets.sdist]
35
35
  include = [
36
+ "markdown_convert/__init__.py",
36
37
  "markdown_convert/__main__.py",
37
38
  "markdown_convert/default.css",
38
39
  "markdown_convert/code.css",
@@ -47,6 +48,7 @@ include = [
47
48
  [tool.hatch.build.targets.wheel]
48
49
  packages = ["markdown_convert"]
49
50
  include = [
51
+ "markdown_convert/__init__.py",
50
52
  "markdown_convert/__main__.py",
51
53
  "markdown_convert/default.css",
52
54
  "markdown_convert/code.css",