44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[project]
|
|
name = "command_parser"
|
|
version = "0.1.0"
|
|
authors = [
|
|
{ name = "linarphy", email = "linarphy@linarphy.net" },
|
|
]
|
|
description = "Utility to quickly parse command line parameter"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Environment :: Console",
|
|
"Operating System :: OS Independent",
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.linarphy.net/linarphy/command_parser"
|
|
Issues = "https://git.linarphy.net/linarphy/command_parser/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targs.wheel]
|
|
packages = ["src/command_parser"]
|
|
|
|
[tool.ruff]
|
|
line-length = 72
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space"
|
|
docstring-code-format = true
|
|
|
|
[tool.basedpyright]
|
|
typeCheckingMode = "all"
|
|
reportUnknown = false
|
|
reportUnknownMemberType = false
|
|
reportUnknownArgumentType = false
|
|
reportUnknownVariableType = false
|