Skip to content

Commit d3b5d42

Browse files
committed
Add MANIFEST.in file
1 parent 9d70584 commit d3b5d42

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include README.rst LICENSE tests.py

binarytree/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from __future__ import absolute_import, unicode_literals, division
22

3-
__version__ = '3.0.0'
43
__all__ = ['Node', 'tree', 'bst', 'heap', 'build']
54

65
import heapq

binarytree/version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '3.0.1'

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# add these directories to sys.path here. If the directory is relative to the
1818
# documentation root, use os.path.abspath to make it absolute, like shown here.
1919
#
20-
from binarytree import __version__
20+
from binarytree.version import __version__
2121

2222
# -- General configuration ------------------------------------------------
2323

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from setuptools import setup, find_packages
22

3-
import binarytree
3+
from binarytree.version import __version__
44

55
setup(
66
name='binarytree',
77
description='Python Library for Learning Binary Trees',
8-
version=binarytree.__version__,
8+
version=__version__,
99
author='Joohwan Oh',
1010
author_email='[email protected]',
1111
url='https://github.com/joowani/binarytree',

0 commit comments

Comments
 (0)