Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Sep 5, 2017
1 parent fe0799f commit a893f76
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
8 changes: 4 additions & 4 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@
- 1040_: the following Windows APIs on Python 2 now return a string instead of
unicode:
- Process.memory_maps().path
- WindosService.bin_path()
- WindosService.description()
- WindosService.display_name()
- WindosService.username()
- WindowsService.bin_path()
- WindowsService.description()
- WindowsService.display_name()
- WindowsService.username()

*2017-04-10*

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Projects using psutil
=====================

At the time of writing there are over
`5400 open source projects <https://libraries.io/pypi/psutil/dependent_repositories?page=1>`__
`6000 open source projects <https://libraries.io/pypi/psutil/dependent_repositories?page=1>`__
on github which depend from psutil.
Here's some I find particularly interesting:

Expand All @@ -83,7 +83,7 @@ Here's some I find particularly interesting:
- https://github.com/google/grr
- https://github.com/Jahaja/psdash
- https://github.com/ajenti/ajenti

- https://github.com/home-assistant/home-assistant/

========
Portings
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""psutil is a cross-platform library for retrieving information on
running processes and system utilization (CPU, memory, disks, network)
in Python.
"""
"""Cross-platform lib for process and system monitoring in Python."""

import contextlib
import io
Expand Down Expand Up @@ -267,7 +264,7 @@ def main():
kwargs = dict(
name='psutil',
version=VERSION,
description=__doc__ .replace('\n', '').strip() if __doc__ else '',
description=__doc__ .replace('\n', ' ').strip() if __doc__ else '',
long_description=get_description(),
keywords=[
'ps', 'top', 'kill', 'free', 'lsof', 'netstat', 'nice', 'tty',
Expand Down

0 comments on commit a893f76

Please sign in to comment.