mirror of
https://github.com/danieldemus/pyp2spec.git
synced 2026-07-29 13:44:21 +02:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
pypi_name = "markdown-it-py"
|
|
python_name = "python-markdown-it-py"
|
|
modules = ["markdown_it"]
|
|
version = "1.1.0"
|
|
release = "3"
|
|
summary = "Python port of markdown-it"
|
|
license = "MIT"
|
|
url = "https://github.com/executablebooks/markdown-it-py"
|
|
source = "%{url}/archive/v%{version}/markdown-it-py-%{version}.tar.gz"
|
|
archive_name = "markdown-it-py"
|
|
description = '''
|
|
Markdown parser done right. Its features:
|
|
Follows the CommonMark spec for baseline parsing.
|
|
Has configurable syntax: you can add new rules and even replace existing ones.
|
|
Pluggable: Adds syntax extensions to extend the parser.
|
|
High speed & safe by default
|
|
'''
|
|
|
|
manual_build_requires = [
|
|
"python3-setuptools",
|
|
"python3-pytest",
|
|
"python3-pytest-benchmark",
|
|
"python3-psutil"
|
|
]
|
|
|
|
test_method = "pytest"
|
|
unwanted_tests = [
|
|
"test_pretty",
|
|
"test_table_tokens",
|
|
"test_file",
|
|
"test_use_existing_env",
|
|
"test_store_labels",
|
|
"test_linkify",
|
|
]
|
|
|
|
license_files = ["LICENSE", "LICENSE.markdown-it"]
|
|
doc_files = ["README.md"]
|
|
binary_files = ["markdown-it"]
|
|
|
|
changelog_head = "Fri Jul 23 2021 Package Maintainer <package@maintainer.com>"
|
|
changelog_msg = "Rebuilt" |