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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Markups"
description = "A wrapper around various text markups"
readme = "README.rst"
authors = [{name = "Dmitry Shachnev", email = "mitya57@gmail.com"}]
license = "BSD-3-Clause"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: General",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/retext-project/pymarkups"
Documentation = "https://pymarkups.readthedocs.io/en/latest/"
"Issue Tracker" = "https://github.com/retext-project/pymarkups/issues/"
Changelog = "https://pymarkups.readthedocs.io/en/latest/changelog.html"
[project.optional-dependencies]
markdown = ["Markdown>=3", "PyYAML", "python-markdown-math"]
restructuredtext = ["docutils"]
textile = ["textile"]
highlighting = ["Pygments"]
asciidoc = ["asciidoc", "lxml"]
[project.entry-points.pymarkups]
markdown = "markups.markdown:MarkdownMarkup"
restructuredtext = "markups.restructuredtext:ReStructuredTextMarkup"
textile = "markups.textile:TextileMarkup"
asciidoc = "markups.asciidoc:AsciiDocMarkup"
[tool.setuptools]
packages = ["markups"]
include-package-data = false
[tool.setuptools.package-data]
markups = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "markups.__version__"}
|