Skip to content

Commit

Permalink
Merge pull request #34 from charnley/dependency_fix
Browse files Browse the repository at this point in the history
moved __version__ to setup file
  • Loading branch information
larsbratholm committed May 22, 2018
2 parents 7f6fa7f + 6146237 commit 53e0084
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rmsd/calculate_rmsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"""

__version__ = '1.2.6'
__version__ = '1.2.7'

import copy
import numpy as np
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
import setuptools
import os

# import rmsd for version
import rmsd
__version__ = '1.2.7'

# Find the absolute path
here = os.path.abspath(os.path.dirname(__file__))
Expand All @@ -16,7 +15,7 @@
short_description = 'Calculate root-mean-square deviation (RMSD), using Kabsch or Quaternion algorithm for rotation, between two Cartesian coordinates in .xyz or .pdb format, resulting in the minimal RMSD.'

setuptools.setup(name='rmsd',
version=rmsd.__version__,
version=__version__,
maintainer='Jimmy Kromann',
maintainer_email='[email protected]',
description=short_description,
Expand Down

0 comments on commit 53e0084

Please sign in to comment.