32 lines
721 B
1
[build-system]
2
requires = ["hatchling"]
3
build-backend = "hatchling.build"
4
5
[project]
6
authors = [
7
{ name = "Marc Beninca", email = "git@marc.beninca.link" },
8
]
9
maintainers = [
10
{ name = "Marc Beninca", email = "git@marc.beninca.link" },
11
]
12
classifiers = [
13
"Programming Language :: Python :: 3",
14
"License :: OSI Approved :: GNU Affero General Public License v3",
15
"Operating System :: OS Independent",
16
]
17
dependencies = []
18
description = "Read Write eXecute"
19
dynamic = ["version"]
20
keywords = []
21
license-files = ["license.md"]
22
name = "rwx"
23
readme = "readme.md"
24
requires-python = ">= 3.11"
25
26
[project.scripts]
27
# command = "package.module:function"
28
29
[project.urls]
30
31
[tool.hatch.version]
32
path = "rwx/__init__.py"
33