rwx/pyproject.toml

46 lines
959 B
TOML
Raw Normal View History

2024-02-16 19:47:41 +01:00
[build-system]
2024-06-10 09:37:23 +02:00
requires = ["hatchling"]
build-backend = "hatchling.build"
2024-02-16 19:47:41 +01:00
[project]
authors = [
2024-06-10 09:37:23 +02:00
{ name = "Marc Beninca", email = "git@marc.beninca.link" },
2024-02-16 19:47:41 +01:00
]
maintainers = [
2024-06-10 09:37:23 +02:00
{ name = "Marc Beninca", email = "git@marc.beninca.link" },
2024-02-16 19:47:41 +01:00
]
classifiers = [
2024-06-10 09:37:23 +02:00
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
2024-02-16 19:47:41 +01:00
]
dependencies = []
2024-06-10 09:37:23 +02:00
description = "Read Write eXecute"
dynamic = ["version"]
2024-02-16 19:47:41 +01:00
keywords = []
2024-06-10 09:37:23 +02:00
license-files = { paths = ["license.md"] }
name = "rwx"
readme = "readme.md"
2024-08-20 14:14:03 +02:00
requires-python = ">= 3.11"
2024-02-16 19:47:41 +01:00
[project.scripts]
2024-06-10 09:37:23 +02:00
# command = "package.module:function"
2024-02-16 19:47:41 +01:00
[project.urls]
2024-02-16 23:25:17 +01:00
[tool.hatch.version]
2024-06-10 09:37:23 +02:00
path = "rwx/__init__.py"
2024-06-10 09:35:12 +02:00
2024-09-15 15:03:13 +02:00
[tool.pydoclint]
allow-init-docstring = true
2024-09-16 01:17:55 +02:00
quiet = true
2024-09-15 15:03:13 +02:00
skip-checking-short-docstrings = false
style = "sphinx"
2024-06-12 14:54:59 +02:00
[tool.ruff]
line-length = 80
2024-06-12 14:45:30 +02:00
[tool.ruff.lint]
ignore = ["COM812", "D203", "D213", "ISC001"]
2024-06-10 09:35:12 +02:00
select = ["ALL"]