spcd/pyproject.toml

45 lines
972 B
TOML
Raw Normal View History

2024-06-14 12:24:26 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
authors = [
{ name = "Marc Beninca", email = "git@marc.beninca.link" },
]
maintainers = [
{ name = "Marc Beninca", email = "git@marc.beninca.link" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = ["rwx"]
2024-06-27 11:53:07 +00:00
description = "Shell to Python Continuous Deployment"
2024-06-14 12:24:26 +00:00
dynamic = ["version"]
keywords = []
license-files = { paths = ["license.md"] }
2024-06-27 11:53:07 +00:00
name = "spcd"
2024-06-14 12:24:26 +00:00
readme = "readme.md"
2024-08-20 12:14:36 +00:00
requires-python = ">= 3.11"
2024-06-14 12:24:26 +00:00
[project.scripts]
# command = "package.module:function"
[project.urls]
[tool.hatch.version]
2024-06-27 11:53:07 +00:00
path = "spcd/__init__.py"
2024-06-14 12:24:26 +00:00
2024-09-15 13:03:31 +00:00
[tool.pydoclint]
allow-init-docstring = true
skip-checking-short-docstrings = false
style = "sphinx"
2024-06-12 12:56:12 +00:00
[tool.ruff]
line-length = 80
2024-06-12 12:09:25 +00:00
[tool.ruff.lint]
2024-06-12 12:39:02 +00:00
ignore = ["COM812", "D203", "D213", "ISC001"]
2024-06-10 12:07:56 +00:00
select = ["ALL"]