1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pathlib_abc"
version = "0.5.2"
authors = [
{ name="Barney Gale", email="barney.gale@gmail.com" },
]
description = "Backport of pathlib ABCs"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
[project.urls]
Homepage = "https://github.com/barneygale/pathlib-abc"
Issues = "https://github.com/barneygale/pathlib-abc/issues"
|