json-unescape/pyproject.toml

33 lines
773 B
TOML

[project]
name = "json-unescape"
dependencies = []
dynamic = ["version"]
authors = []
description = "Unescape json string, which is escaped for json. This is usually necessarry for webscraping."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.build]
directory = "dist"
[tool.hatch.build.targets.sdist]
include = ["json_unescape/*.py"]
[tool.hatch.build.targets.wheel]
packages = ["json_unescape"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "json_unescape/__about__.py"