Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

moved __version__ to setup file #34

Merged
merged 1 commit into from
May 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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