-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add long description for the package
- Loading branch information
1 parent
5b4ad15
commit cbcb53c
Showing
2 changed files
with
14 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
`deepsense.ai <https://deepsense.ai>`_ **ds_pycontain** | ||
------------------------------------------------------------- | ||
|
||
**ds_pycontain** is a small python package to help with docker containers and images. | ||
|
||
Example use case you might consider is to isolate python code execution generated by untrusted LLM by running it in a docker container. | ||
|
||
This package makes it a bit easier to: | ||
|
||
* Build docker images from Dockerfiles or in-memory string. | ||
* Pull docker images from dockerhub (or similar). | ||
* Run docker container to execute a one-off command. | ||
* Run docker container to execute a long-running process and communicate with it. |
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 |
---|---|---|
|
@@ -3,8 +3,7 @@ name = ds_pycontain | |
# do not change version by hand: use bump_version.sh | ||
version = file: src/ds_pycontain/VERSION | ||
description = "deepsense.ai wrapper around docker python API" | ||
long_description = file: DESCRIPTION.md | ||
long_description_content_type = text/markdown | ||
long_description = file: DESCRIPTION.rst | ||
author = deepsense.ai | ||
author_email = [email protected] | ||
license = MIT License (MIT) | ||
|