Skip to content

Commit

Permalink
MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
eerimoq committed Mar 24, 2016
1 parent c325b99 commit 01de3fb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include LICENSE
include Makefile
recursive-include docs *.bat
recursive-include docs *.py
recursive-include docs *.rst
recursive-include docs Makefile
recursive-include tests *.py
1 change: 1 addition & 0 deletions bitstruct.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def _pack_integer(size, arg):

return '{{:0{}b}}'.format(size).format(arg)


def _pack_boolean(size, arg):
return _pack_integer(size, int(arg))

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '0.7'
version = '2.1.3'
# The full version, including alpha/beta/rc tags.
release = '0.7.1'
release = '2.1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name='bitstruct',
version='2.1.2',
version='2.1.3',
description=('This module performs conversions between Python values '
'and C bit field structs represented as Python '
'bytearrays.'),
Expand Down

0 comments on commit 01de3fb

Please sign in to comment.