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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: BSD-2-Clause
[build-system]
requires = [
"hatchling >= 0.22, < 2",
]
build-backend = "hatchling.build"
[project]
name = "confget"
description = "Parse configuration files and extract values from them"
readme = "README.md"
license = {text = "BSD-2-Clause"}
requires-python = ">= 3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: DFSG approved",
"License :: Freely Distributable",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = [
"dataclasses; python_version < '3.7'",
"pyparsing >= 3, < 4",
]
dynamic = ["version"]
[[project.authors]]
name = "Peter Pentchev"
email = "roam@ringlet.net"
[project.urls]
Homepage = "https://devel.ringlet.net/textproc/confget/"
[tool.hatch.build.targets.wheel]
packages = ["src/confget"]
[tool.hatch.version]
path = "src/confget/defs.py"
[tool.black]
target-version = ["py36", "py37", "py38", "py39", "py310", "py311"]
line-length = 100
[tool.mypy]
python_version = "3.6"
[tool.test-stages]
stages = ["ruff and not @devel", "@check and not @devel", "@tests and not @devel"]
|