markdown_convert 1.2.19__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.19
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>
@@ -9,7 +9,7 @@ License-File: LICENSE
9
9
  Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
10
10
  Classifier: Operating System :: OS Independent
11
11
  Classifier: Programming Language :: Python :: 3
12
- Requires-Python: <3.14,>=3.9
12
+ Requires-Python: <3.15,>=3.9
13
13
  Requires-Dist: argsdict==1.0.0
14
14
  Requires-Dist: latex2mathml>=3.78.1
15
15
  Requires-Dist: markdown2<3,>=2.4.13
@@ -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,14 +4,14 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "markdown_convert"
7
- version = "1.2.19"
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" },
11
11
  ]
12
12
  license = { text = "GPL-2.0-only" }
13
13
  readme = "README.md"
14
- requires-python = ">=3.9,<3.14"
14
+ requires-python = ">=3.9,<3.15"
15
15
  classifiers = [
16
16
  "Programming Language :: Python :: 3",
17
17
  "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
@@ -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",