-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[project]
name = "chmod-wizard"
version = "0.1.0"
description = "A lightweight and efficient app for generating ready-to-use 'chmod' commands based on necesities. Available for MacOS X only."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{name = "OrdinaryHacker", email = "ordinary_hacker@proton.me"}]
keywords = ["chmod", "unix", "macos", "file permissions", "utility"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Topic :: Utilities",
"Topic :: System :: Systems Administration",
]
dependencies = [
"pyobjc>=8.0"
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
package-dir = {"" = "src"}