-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from charnley/dependency_fix
moved __version__ to setup file
- Loading branch information
Showing
2 changed files
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
""" | ||
|
||
__version__ = '1.2.6' | ||
__version__ = '1.2.7' | ||
|
||
import copy | ||
import numpy as np | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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__)) | ||
|
@@ -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, | ||
|