-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,23 +34,22 @@ def run(self): | |
|
||
if __name__ == "__main__": | ||
|
||
with open("README.md", "r") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name="limited-shell", | ||
version=__version__, | ||
description="lshell - Limited Shell", | ||
long_description="""lshell lets you restrict the environment of any user. | ||
It provides an easily configurable shell: just choose a list of allowed commands | ||
for every limited account. This tool is particularly useful for system administrators | ||
who need to provide restricted shell access to users. It ensures that users can only | ||
execute a predefined set of commands, enhancing the security of the system.""", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="Ignace Mouzannar", | ||
author_email="[email protected]", | ||
maintainer="Ignace Mouzannar", | ||
maintainer_email="[email protected]", | ||
keywords=["limited", "shell", "security", "python"], | ||
url="https://github.com/ghantoos/lshell", | ||
license="GPL", | ||
license="GPL-3", | ||
platforms=["UNIX"], | ||
scripts=["bin/lshell"], | ||
package_dir={"lshell": "lshell"}, | ||
|