File: pyproject.toml

package info (click to toggle)
pandoc-include 1.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 448 kB
  • sloc: xml: 488; python: 456; ansic: 52; makefile: 17; cpp: 5
file content (40 lines) | stat: -rw-r--r-- 918 bytes parent folder | download
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.2"
description = "Pandoc filter to allow file and header includes"
readme = "README.md"
authors = [{name = "DCsunset", email = "DCsunset@protonmail.com"}]
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"