Skip to content

Commit

Permalink
Preparing release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Aug 21, 2019
1 parent 0b40c7e commit 7c5fe3c
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ Changes
=======


1.0.0 (unreleased)
1.0.0 (2019-08-21)
------------------

* Moved to its own repository on GitHub, added a README and this changelog.
* First release to PyPI.


0.9.0 (2019-08-01)
Expand Down
9 changes: 9 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
include .gitignore
include *.mk
include *.py
include *.rst
include *.txt
include *.yml
include .coveragerc
include LICENSE
include Makefile
include pytest.ini
include tox.ini
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ Reads strace -f output and produces a process tree. Example ::
└─25528 awk '$1 == "Distribution:" { print $2 }'


Installation
------------

Use your favourite pip wrapper to install strace-process-tree, e.g.

pipx install strace-process-tree


Synopsis
--------

Expand Down
10 changes: 10 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE

[zest.releaser]
python-file-with-version = strace_process_tree.py
create-wheel = yes

[flake8]
extend-ignore = E501
# https://pep8.readthedocs.org/en/latest/intro.html#error-codes
Expand Down
2 changes: 1 addition & 1 deletion strace_process_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from collections import defaultdict, namedtuple


__version__ = '1.0.0.dev0'
__version__ = '1.0.0'
__author__ = 'Marius Gedminas <marius@gedmin.as>'
__url__ = "https://github.com/mgedmin/strace-process-tree"
__licence__ = 'GPL v2 or later' # or ask me for MIT
Expand Down

0 comments on commit 7c5fe3c

Please sign in to comment.