Skip to content

Commit 8efe9ec

Browse files
committed
Switch to pyproject.toml file
1 parent d34e601 commit 8efe9ec

File tree

3 files changed

+43
-70
lines changed

3 files changed

+43
-70
lines changed

pyproject.toml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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']

setup.cfg

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)