-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
40 lines (35 loc) · 918 Bytes
/
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
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pandoc_include"]
[project]
name = "pandoc-include"
version = "1.4.1"
description = "Pandoc filter to allow file and header includes"
readme = "README.md"
authors = [{name = "DCsunset", email = "[email protected]"}]
license = {text = "MIT"}
requires-python = ">=3.7"
keywords = ["pandoc", "pandocfilters", "markdown", "latex"]
classifiers = [
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'
]
dependencies = [
"panflute>=2.0.5",
"natsort>=7",
"lxml>=4.9.2"
]
[project.optional-dependencies]
pypi = [
"build",
"twine",
"wheel"
]
[project.urls]
homepage = 'https://github.com/DCsunset/pandoc-include'
[project.scripts]
pandoc-include = "pandoc_include.main:main"