forked from phuel/tables_extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (38 loc) · 1.3 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
44
45
[project]
name = "markdown_tables_extended"
description = "This is an extended version of the tables extension of Python-Markdown. It contains addtions from the cell_row_span extension and allows to create tables without header."
version = "0.1.3"
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
{ name = "Daniel Riggins", email = "[email protected]" },
]
keywords = ["markdown_grid_tables", "extension", "plugin", "markdown", "mkdocs"] # max of 5 keywords
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [
"markdown>=3.0.0",
]
#dynamic = ["version"]
[project.urls]
homepage = "https://github.com/fumbles/tables_extended"
documentation = "https://github.com/fumbles/tables_extended"
repository = "https://github.com/fumbles/tables_extended"
[build-system]
requires = ["flit_scm"]
build-backend = "flit_scm:buildapi"
[tool.flit.sdist]
exclude = [
".gitignore",
]
[tool.setuptools_scm]
write_to = "src/markdown_tables_extended/_version.py"