Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
# https://peps.python.org/pep-0621/#readme
requires-python = ">=3.6"
requires-python = ">=3.7"
dynamic = ["version"]
name = "ansi2html"
description = "Checks playbooks for practices and behavior that could potentially be improved"
Expand All @@ -22,7 +22,6 @@ classifiers = [
"Operating System :: POSIX",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -39,7 +38,10 @@ classifiers = [
"Topic :: Utilities",
]
keywords = ["ansi", "html", "color"]
dependencies = ['importlib-metadata; python_version<"3.8"']
dependencies = [
'importlib-metadata; python_version<"3.8"',
'typing_extensions; python_version<"3.8"'
]

[project.urls]
homepage = "https://github.com/pycontribs/ansi2html"
Expand Down