Skip to content

Commit

Permalink
Add MANIFEST.in file
Browse files Browse the repository at this point in the history
  • Loading branch information
joowani committed Dec 20, 2017
1 parent 9d70584 commit d3b5d42
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.rst LICENSE tests.py
1 change: 0 additions & 1 deletion binarytree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from __future__ import absolute_import, unicode_literals, division

__version__ = '3.0.0'
__all__ = ['Node', 'tree', 'bst', 'heap', 'build']

import heapq
Expand Down
1 change: 1 addition & 0 deletions binarytree/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '3.0.1'
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
from binarytree import __version__
from binarytree.version import __version__

# -- General configuration ------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from setuptools import setup, find_packages

import binarytree
from binarytree.version import __version__

setup(
name='binarytree',
description='Python Library for Learning Binary Trees',
version=binarytree.__version__,
version=__version__,
author='Joohwan Oh',
author_email='[email protected]',
url='https://github.com/joowani/binarytree',
Expand Down

0 comments on commit d3b5d42

Please sign in to comment.