Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
Latest commit
31 lines (28 loc) · 885 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 885 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
31
[build-system]
requires = ["flit_core >=3.2,<5"]
build-backend = "flit_core.buildapi"
[project]
name = "lshell"
description = "Limited Shell (lshell) restricts a user's environment to a configurable set of allowed commands."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "COPYING" }
authors = [
{ name = "JMSolo" },
]
keywords = ["shell", "restricted", "security", "seedbox"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: System :: Shells",
"Topic :: System :: Systems Administration",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/QuickBox/lshell"
Support = "https://v3.quickbox.io/docs/support"
[project.scripts]
lshell = "lshell:main"