|
1 | 1 | [build-system]
|
2 | 2 | # Minimum requirements for the build system to execute.
|
3 |
| -requires = ["setuptools>=36.6", "wheel"] |
| 3 | +requires = ["setuptools>=61.2", "wheel"] |
4 | 4 | build-backend = "setuptools.build_meta"
|
| 5 | + |
| 6 | +[project] |
| 7 | +name = 'Markdown' |
| 8 | +dynamic = ['version'] |
| 9 | +description = "Python implementation of John Gruber's Markdown." |
| 10 | +readme = {file = 'README.md', content-type='text/markdown'} |
| 11 | +authors = [ |
| 12 | + {name = 'Manfred Stienstra'}, |
| 13 | + {name = 'Yuri Takhteyev'}, |
| 14 | + { name = 'Waylan limberg', email = '[email protected]'} |
| 15 | +] |
| 16 | +maintainers = [ |
| 17 | + { name = 'Waylan Limberg', email = '[email protected]'}, |
| 18 | + {name = 'Isaac Muse'} |
| 19 | +] |
| 20 | +license = {file = 'LICENSE.md'} |
| 21 | +requires-python = '>=3.7' |
| 22 | +dependencies = [ |
| 23 | + "importlib-metadata>=4.4;python_version<'3.10'" |
| 24 | +] |
| 25 | +keywords = ['markdown', 'markdown-parser', 'python-markdown', 'markdown-to-html'] |
| 26 | +classifiers = [ |
| 27 | + 'Development Status :: 5 - Production/Stable', |
| 28 | + 'License :: OSI Approved :: BSD License', |
| 29 | + 'Operating System :: OS Independent', |
| 30 | + 'Programming Language :: Python', |
| 31 | + 'Programming Language :: Python :: 3', |
| 32 | + 'Programming Language :: Python :: 3.7', |
| 33 | + 'Programming Language :: Python :: 3.8', |
| 34 | + 'Programming Language :: Python :: 3.9', |
| 35 | + 'Programming Language :: Python :: 3.10', |
| 36 | + 'Programming Language :: Python :: 3.11', |
| 37 | + 'Programming Language :: Python :: 3 :: Only', |
| 38 | + 'Programming Language :: Python :: Implementation :: CPython', |
| 39 | + 'Programming Language :: Python :: Implementation :: PyPy', |
| 40 | + 'Topic :: Communications :: Email :: Filters', |
| 41 | + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', |
| 42 | + 'Topic :: Internet :: WWW/HTTP :: Site Management', |
| 43 | + 'Topic :: Software Development :: Documentation', |
| 44 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 45 | + 'Topic :: Text Processing :: Filters', |
| 46 | + 'Topic :: Text Processing :: Markup :: HTML', |
| 47 | + 'Topic :: Text Processing :: Markup :: Markdown' |
| 48 | +] |
| 49 | + |
| 50 | +[project.optional-dependencies] |
| 51 | +testing = [ |
| 52 | + 'coverage', |
| 53 | + 'pyyaml', |
| 54 | +] |
| 55 | + |
| 56 | +[project.urls] |
| 57 | +'Homepage' = 'https://Python-Markdown.github.io/' |
| 58 | +'Documentation' = 'https://Python-Markdown.github.io/' |
| 59 | +'Repository' = 'https://github.com/Python-Markdown/markdown' |
| 60 | +'Issue Tracker' = 'https://github.com/Python-Markdown/markdown/issues' |
| 61 | +'Changelog' = 'https://github.com/Python-Markdown/markdown/blob/master/docs/change_log/index.md' |
| 62 | + |
| 63 | +[project.entry-points.scripts] |
| 64 | +markdown_py = 'markdown.__main__:run' |
| 65 | + |
| 66 | +[project.entry-points.'markdown.extensions'] |
| 67 | +abbr = 'markdown.extensions.abbr:AbbrExtension' |
| 68 | +admonition = 'markdown.extensions.admonition:AdmonitionExtension' |
| 69 | +attr_list = 'markdown.extensions.attr_list:AttrListExtension' |
| 70 | +codehilite = 'markdown.extensions.codehilite:CodeHiliteExtension' |
| 71 | +def_list = 'markdown.extensions.def_list:DefListExtension' |
| 72 | +extra = 'markdown.extensions.extra:ExtraExtension' |
| 73 | +fenced_code = 'markdown.extensions.fenced_code:FencedCodeExtension' |
| 74 | +footnotes = 'markdown.extensions.footnotes:FootnoteExtension' |
| 75 | +md_in_html = 'markdown.extensions.md_in_html:MarkdownInHtmlExtension' |
| 76 | +meta = 'markdown.extensions.meta:MetaExtension' |
| 77 | +nl2br = 'markdown.extensions.nl2br:Nl2BrExtension' |
| 78 | +sane_lists = 'markdown.extensions.sane_lists:SaneListExtension' |
| 79 | +smarty = 'markdown.extensions.smarty:SmartyExtension' |
| 80 | +tables = 'markdown.extensions.tables:TableExtension' |
| 81 | +toc = 'markdown.extensions.toc:TocExtension' |
| 82 | +wikilinks = 'markdown.extensions.wikilinks:WikiLinkExtension' |
| 83 | +legacy_attrs = 'markdown.extensions.legacy_attrs:LegacyAttrExtension' |
| 84 | +legacy_em = 'markdown.extensions.legacy_em:LegacyEmExtension' |
| 85 | + |
| 86 | +[tool.setuptools] |
| 87 | +packages = ['markdown', 'markdown.extensions'] |
| 88 | + |
| 89 | +[tool.setuptools.dynamic] |
| 90 | +version = {attr = 'markdown.__meta__.__version__'} |
0 commit comments