|
| 1 | +[build-system] |
| 2 | +# Minimum requirements for the build system to execute. |
| 3 | +requires = ["setuptools>=61.2", "wheel"] |
| 4 | +build-backend = "setuptools.build_meta" |
| 5 | + |
| 6 | +[project] |
| 7 | +name = 'mdx_gh_links' |
| 8 | +version = '0.3' |
| 9 | +description = "An extension to Python-Markdown which adds support for shorthand links to GitHub users, repositories, issues and commits." |
| 10 | +readme = {file = 'README.md', content-type='text/markdown'} |
| 11 | +authors = [ |
| 12 | + {name = 'Waylan limberg', email = 'waylan.limberg@icloud.com'} |
| 13 | +] |
| 14 | +license = {file = 'LICENSE'} |
| 15 | +dependencies = [ |
| 16 | + "markdown>=3.0.0" |
| 17 | +] |
| 18 | +keywords = ['markdown', 'python-markdown', 'github'] |
| 19 | +classifiers = [ |
| 20 | + 'Development Status :: 4 - Beta', |
| 21 | + 'License :: OSI Approved :: BSD License', |
| 22 | + 'Operating System :: OS Independent', |
| 23 | + 'Programming Language :: Python', |
| 24 | + 'Programming Language :: Python :: 3', |
| 25 | + 'Programming Language :: Python :: 3.7', |
| 26 | + 'Programming Language :: Python :: 3.8', |
| 27 | + 'Programming Language :: Python :: 3.9', |
| 28 | + 'Programming Language :: Python :: 3.10', |
| 29 | + 'Programming Language :: Python :: Implementation :: CPython', |
| 30 | + 'Programming Language :: Python :: Implementation :: PyPy', |
| 31 | + 'Topic :: Documentation', |
| 32 | + 'Topic :: Text Processing', |
| 33 | + 'Topic :: Text Processing :: Markup', |
| 34 | + 'Topic :: Text Processing :: Markup :: HTML' |
| 35 | +] |
| 36 | + |
| 37 | +[project.urls] |
| 38 | +'Homepage' = 'https://pypi.org/project/mdx-gh-links/' |
| 39 | +'Repository' = 'https://github.com/Python-Markdown/github-links' |
| 40 | +'Issue Tracker' = 'https://github.com/Python-Markdown/github-links/issues' |
| 41 | + |
| 42 | +[tool.setuptools] |
| 43 | +py-modules = ['mdx_gh_links'] |
0 commit comments