Skip to content

Commit

Permalink
pypi release
Browse files Browse the repository at this point in the history
  • Loading branch information
SupraSummus committed May 31, 2018
1 parent 2f82d60 commit 5dc8b2f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ Dead simple utility for spawning graph of processes connected by streams in UNIX
* It's language agnostic. `pgspawn` doesn't care about language - it spawns just *processes*.
* It's efficient. After spawning phase all work is done by OS.

Install
-------

Package is available from pypi

pip install pgspawn

Examples
--------

Expand Down
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@

setup(
name='pgspawn',
version='1.0',
version='0.1.0',
description='Spawn graph of processes that communicate with each other via UNIX pipes',
license='MIT',
url='https://github.com/SupraSummus/pgspawn',
classifiers=[
'Operating System :: POSIX',
'Topic :: System',
'Topic :: Utilities',
],
keywords='unix pipe graph command',
py_modules=['pgspawn'],
scripts=[
'pgspawn',
Expand Down
4 changes: 2 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ assert_code "pgspawn examples_bad/id.yml" 1
assert_code "pgspawn examples_bad/fd_conflict.yml" 1
assert_code "pgspawn examples/orphaned_write_end.yml" 0
assert_code "pgspawn examples/orphaned_read_end.yml" 0
assert_code "pgspawn examples/write_input.yml" 1
assert_code "pgspawn examples/read_output.yml" 1
assert_code "pgspawn examples_bad/write_input.yml" 1
assert_code "pgspawn examples_bad/read_output.yml" 1
assert_code "pgspawn examples_bad/extra_keys.yml" 0
assert_code "pgspawn examples_bad/extra_keys.yml" 0
assert_code "pgspawn examples/exit_max.yml" 57
Expand Down

0 comments on commit 5dc8b2f

Please sign in to comment.