Skip to content

Commit

Permalink
Update README.md and setup.py for v0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
biqqles committed Jan 9, 2020
1 parent d0e843f commit 845bb5e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)).

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='deconstruct',
version='0.2',
version='0.3',
author='biqqles',
author_email='[email protected]',
description='Pythonic C-style structs',
Expand Down

0 comments on commit 845bb5e

Please sign in to comment.