-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 871 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
30
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sshfsman"
version = "0.3.1"
description = "CLI for mounting/unmounting sshfs targets under /mnt/sshfs with XDG config shortcuts"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-only" }
authors = [{ name = "John Mora" }]
keywords = ["sshfs", "fuse", "ssh", "sftp", "linux", "cli", "sysadmin"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Topic :: System :: Systems Administration",
]
[project.scripts]
sshfsman = "sshfsman.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]