rwx/pyproject.toml

40 lines
844 B
TOML
Raw Normal View History

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