1[metadata] 2name = Markups 3version = attr: markups.__version__ 4description = A wrapper around various text markups 5long_description = file: README.rst 6author = Dmitry Shachnev 7author_email = mitya57@gmail.com 8url = https://github.com/retext-project/pymarkups 9license = BSD 3-Clause License 10project_urls = 11 Documentation = https://pymarkups.readthedocs.io/en/latest/ 12 Issue Tracker = https://github.com/retext-project/pymarkups/issues/ 13classifiers = 14 Development Status :: 5 - Production/Stable 15 License :: OSI Approved :: BSD License 16 Operating System :: OS Independent 17 Programming Language :: Python 18 Programming Language :: Python :: 3 19 Programming Language :: Python :: 3.7 20 Programming Language :: Python :: 3.8 21 Programming Language :: Python :: 3.9 22 Programming Language :: Python :: 3.10 23 Programming Language :: Python :: 3 :: Only 24 Topic :: Text Processing :: Markup 25 Topic :: Text Processing :: General 26 Topic :: Software Development :: Libraries :: Python Modules 27 28[options] 29packages = markups 30python_requires = >=3.7 31install_requires = 32 python-markdown-math 33 importlib-metadata;python_version<'3.8' 34 35[options.extras_require] 36markdown = Markdown>=2.6; PyYAML 37restructuredtext = docutils 38textile = textile 39highlighting = Pygments 40 41[options.entry_points] 42pymarkups = 43 markdown = markups.markdown:MarkdownMarkup 44 restructuredtext = markups.restructuredtext:ReStructuredTextMarkup 45 textile = markups.textile:TextileMarkup 46 47[egg_info] 48tag_build = 49tag_date = 0 50 51