Skip to content

Commit

Permalink
Try README.md to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
ghantoos committed Oct 24, 2024
1 parent b5bd317 commit 4f105d4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down

0 comments on commit 4f105d4

Please sign in to comment.