Skip to content

Commit

Permalink
added versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Jun 6, 2020
1 parent f0a94d1 commit 2fff73b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import os, os.path, struct, re, platform
from setuptools.command.install import install
import numpy
import tomotopy.version

here = os.path.abspath(os.path.dirname(__file__))

Expand Down Expand Up @@ -53,7 +54,7 @@
setup(
name='tomotopy',

version='0.8.0',
version=tomotopy.version.__version__,

description='Tomoto, The Topic Modeling Tool for Python',
long_description=long_description,
Expand Down
1 change: 1 addition & 0 deletions tomotopy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.. include:: ./documentation.rst
"""
from tomotopy.version import __version__
import tomotopy.utils as utils
from enum import IntEnum

Expand Down
1 change: 1 addition & 0 deletions tomotopy/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.8.0'

0 comments on commit 2fff73b

Please sign in to comment.