-
Notifications
You must be signed in to change notification settings - Fork 6
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
7 changed files
with
29 additions
and
0 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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/supervise | ||
/unlinkwait | ||
*.pyc | ||
|
||
# Setuptools distribution folder. | ||
/python/dist/ | ||
|
||
# Python egg metadata, regenerated from source files by setuptools. | ||
/python/*.egg-info |
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 @@ | ||
include README.rst |
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,4 @@ | ||
supervise_api | ||
------------- | ||
|
||
This provides a safer subprocess API for Python based on the `supervise` utility. |
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,17 @@ | ||
from setuptools import setup | ||
|
||
setup(name='supervise_api', | ||
version='0.1.2', | ||
description='An API for running processes safely and securely', | ||
long_description=("This package uses the supervise utility, a separately-available C binary," | ||
" to provide a better process API for Linux."), | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", | ||
"Operating System :: POSIX :: Linux", | ||
], | ||
keywords='linux subprocess processes', | ||
url='https://github.com/catern/supervise', | ||
author='catern', | ||
author_email='[email protected]', | ||
license='LGPLv3+', | ||
packages=['supervise_api']) |
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 @@ | ||
from .supervise import * |
File renamed without changes.
File renamed without changes.