Skip to content

Commit

Permalink
Nits.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Apr 10, 2020
1 parent 0b8e52f commit 3497b83
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
8 changes: 4 additions & 4 deletions inform/inform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1715,13 +1715,13 @@ class Inform:
'termination':
stderr is used for the final termination message.
stdout is used otherwise.
This is generally used for programs are not filters (the
output is largely status rather than data that might be fed
into another program through a pipeline).
This is generally used for programs that are not filters
(the output is largely status rather than data that might be
fed into another program through a pipeline).
'header':
stderr is used for all messages with headers/severities.
stdout is used otherwise.
This is generally used for programs are filters (the
This is generally used for programs that act as filters (the
output is largely data that might be fed into another
program through a pipeline). In this case stderr is used for
error messages so they do not pollute the data stream.
Expand Down
34 changes: 17 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
dependencies='arrow six'

setup(
name='inform',
version='1.20.3',
description='print & logging utilities for communicating with user',
long_description=readme,
author="Ken Kundert",
author_email='inform@nurdletech.com',
url='https://inform.readthedocs.io',
download_url='https://github.com/kenkundert/inform/tarball/master',
license='GPLv3+',
zip_safe=True,
packages=['inform'],
install_requires=dependencies.split(),
setup_requires='pytest-runner>=2.0'.split(),
tests_require='pytest pytest-cov'.split(),
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
keywords='inform logging printing'.split(),
classifiers=[
name = 'inform',
version = '1.20.3',
description = 'print & logging utilities for communicating with user',
long_description = readme,
author = "Ken Kundert",
author_email = 'inform@nurdletech.com',
url = 'https://inform.readthedocs.io',
download_url = 'https://github.com/kenkundert/inform/tarball/master',
license = 'GPLv3+',
zip_safe = False,
packages = ['inform'],
install_requires = dependencies.split(),
setup_requires = 'pytest-runner>=2.0'.split(),
tests_require = 'pytest pytest-cov'.split(),
python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
keywords = 'inform logging printing'.split(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
Expand Down

0 comments on commit 3497b83

Please sign in to comment.