-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.51 KB
/
pyproject.toml
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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = 'mdx_gh_links'
version = '0.4'
description = "An extension to Python-Markdown which adds support for shorthand links to GitHub users, repositories, issues and commits."
readme = {file = 'README.md', content-type='text/markdown'}
authors = [
{name = 'Waylan limberg', email = '[email protected]'}
]
license = {file = 'LICENSE'}
dependencies = [
"markdown>=3.0.0"
]
keywords = ['markdown', 'python-markdown', 'github']
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Documentation',
'Topic :: Text Processing',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: HTML'
]
[project.urls]
'Homepage' = 'https://pypi.org/project/mdx-gh-links/'
'Repository' = 'https://github.com/Python-Markdown/github-links'
'Issue Tracker' = 'https://github.com/Python-Markdown/github-links/issues'
[tool.setuptools]
py-modules = ['mdx_gh_links']