-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (31 loc) · 1.08 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "MarkdownToLaTeX"
version = "0.0.2"
authors = [
{ name="gitcordier", email="[email protected]" },
]
description = "Markdown to LaTeX"
keywords=["LaTeX", "Markdown", "Markdown to LaTeX"]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Text Processing :: Markup :: LaTeX",
"Topic :: Utilities"
]
[project.scripts]
"markdowntolatex" = "markdowntolatex.user.choice:markdown_to_latex"
"markdowntopdf" = "markdowntolatex.user.choice:markdown_to_pdf"
"latextopdf" = "markdowntolatex.user.choice:latex_to_pdf"
[project.urls]
"Homepage" = "https://github.com/gitcordier/MarkdownToLaTeX"
"Bug Tracker" = "https://github.com/gitcordier/MarkdownToLaTeX/issues"
"Documentation" = "https://markdowntolatex.readthedocs.io"