From 845bb5e8e59f471de12d4adbbd42291c63e99f13 Mon Sep 17 00:00:00 2001 From: biqqles Date: Thu, 9 Jan 2020 20:59:17 +0000 Subject: [PATCH] Update README.md and setup.py for v0.3 --- README.md | 12 +++++++++--- setup.py | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bb3291e..42f9341 100755 --- a/README.md +++ b/README.md @@ -51,13 +51,19 @@ This definition can be used to interpret and then access binary data: Of course, in reality the buffer passed in is more likely to come from something more useful, like a file. Notice that fixed-size arrays can be specified using the syntax `type[length]`, a further improvement on Python's struct. ### Installation -Download and install with the following command: +deconstruct is now on PyPI: ```sh -python3 -m pip install https://github.com/biqqles/deconstruct/archive/master.zip +pip install deconstruct ``` -Built wheels are also available under [Releases](https://github.com/biqqles/deconstruct/releases). +Alternatively you can install straight from this repository: + +```sh +pip install https://github.com/biqqles/deconstruct/archive/master.zip +``` + +Built wheels are also available under [Releases](https://github.com/biqqles/deconstruct/releases), as is a changelog. deconstruct has no dependencies but requires Python >= 3.6 as it makes use of the class annotations added in that release (see [PEP 526](https://www.python.org/dev/peps/pep-0526/)). diff --git a/setup.py b/setup.py index a8687fc..4f5df73 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='deconstruct', - version='0.2', + version='0.3', author='biqqles', author_email='biqqles@protonmail.com', description='Pythonic C-style structs',