Skip to content

Commit

Permalink
#939: update MANIFEST to include only src files and not much else
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Nov 7, 2016
1 parent ba2c07c commit d493b28
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 32 deletions.
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
*Bug tracker at https://github.com/giampaolo/psutil/issues*

5.0.1
=====

*XXXX-XX-XX*

**Enhancements**

- 939_: tar.gz distribution went from 1.8M to 258K.


5.0.0
=====

Expand Down
28 changes: 6 additions & 22 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,23 +1,7 @@
include .coveragerc
include .git-pre-commit
include .gitignore
include .travis.yml
include appveyor.yml
include CREDITS
include DEVGUIDE.rst
include HISTORY.rst
include IDEAS
include INSTALL.rst
include LICENSE
include make.bat
include *.rst
include CREDITS*
include INSTALL*
include LICENSE*
include make.bar
include Makefile
include MANIFEST.in
include README.rst
include setup.py
include tox.ini
recursive-exclude docs/_build *
recursive-include .ci *
recursive-include docs *
recursive-include psutil *.py *.c *.h README*
recursive-include scripts *.py
recursive-include scripts/internal *.py README*
recursive-include psutil *.py *.c *.h
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ Example applications
- https://github.com/Jahaja/psdash
- https://github.com/giampaolo/psutil/tree/master/scripts

+------------------------------------------------+---------------------------------------------+
| .. image:: docs/_static/procinfo-small.png | .. image:: docs/_static/top-small.png |
| :target: docs/_static/procinfo.png | :target: docs/_static/top.png |
+------------------------------------------------+---------------------------------------------+
| .. image:: docs/_static/procsmem-small.png | .. image:: docs/_static/pmap-small.png |
| :target: docs/_static/procsmem.png | :target: docs/_static/pmap.png |
+------------------------------------------------+---------------------------------------------+
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------+
| .. image:: https://github.com/giampaolo/psutil/blob/master/docs/_static/procinfo-small.png | .. image:: https://github.com/giampaolo/psutil/blob/master/docs/_static/top-small.png |
| :target: https://github.com/giampaolo/psutil/blob/master/docs/_static/procinfo.png | :target: https://github.com/giampaolo/psutil/blob/master/docs/_static/top.png |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------+
| .. image:: https://github.com/giampaolo/psutil/blob/master/docs/_static/procsmem-small.png | .. image:: https://github.com/giampaolo/psutil/blob/master/docs/_static/pmap-small.png |
| :target: https://github.com/giampaolo/psutil/blob/master/docs/_static/procsmem.png | :target: https://github.com/giampaolo/psutil/blob/master/docs/_static/pmap.png |
+------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------+

==============
Example usages
Expand Down
7 changes: 4 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -772,9 +772,10 @@ Process class
multiple process information at the same time.
Internally different process info (e.g. :meth:`name`, :meth:`ppid`,
:meth:`uids`, :meth:`create_time`, ...) may be fetched by using the same
routine, but only one data is returned and the others are discarded.
routine, but only one value is returned and the others are discarded.
When using this context manager the internal routine is executed once (in
the example below on :meth:`name()`) and the other info are cached.
the example below on :meth:`name()`) the value of interest is returned and
the others are cached.
The subsequent calls sharing the same internal routine will return the
cached value.
The cache is cleared when exiting the context manager block.
Expand Down Expand Up @@ -839,7 +840,7 @@ Process class
| *speedup: +2.5x* | *speedup: +1.8x / +6.5x* | *speedup: +1.9x* | *speedup: +2.0x* | *speedup: +1.3x* |
+------------------------------+-------------------------------+------------------------------+------------------------------+--------------------------+

.. versionadded:: 5.0.0
.. versionadded:: 5.0.0

.. attribute:: pid

Expand Down

0 comments on commit d493b28

Please sign in to comment.