Skip to content

Commit

Permalink
updated package
Browse files Browse the repository at this point in the history
  • Loading branch information
twoolie committed Feb 28, 2011
1 parent b9529d7 commit aa87f8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion nbt/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from nbt import *
from nbt import *

VERSION = (1, 0)
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/usr/bin/env python

from distutils.core import setup
from nbt import VERSION

setup(
name='NBT',
version='0.9',
version=".".join(str(x) for x in VERSION),
description='Named Binary Tag Reader/Writer',
author='Thomas Woolford',
author_email='[email protected]',
Expand Down

0 comments on commit aa87f8f

Please sign in to comment.