rwx/pyproject.toml

36 lines
763 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"
requires-python = ">= 3.10"
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
[tool.ruff]
select = ["ALL"]