Skip to content

Commit

Permalink
Merge pull request #18 from haddocking/v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoukos authored Mar 15, 2018
2 parents 1899ccc + f8ebdac commit c123341
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prodigy_lig/prodigy_lig.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
2. https://doi.org/10.1007/s10822-017-0049-y
"""

__version__ = '0.0.0'
__version__ = '1.0.0'

from os.path import basename, splitext
import sys
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
from setuptools import setup
import codecs

from prodigy_lig import prodigy_lig


def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()

Expand All @@ -12,7 +15,7 @@ def read(fname):

setup(
name='prodigy_lig',
version = "0.0.0",
version = prodigy_lig.__version__,
description=("Calculate protein-small molecule binding affinities."),
url='http://github.com/haddocking/prodigy-lig',
author='Computational Structural Biology Group @ Utrecht University',
Expand Down

0 comments on commit c123341

Please sign in to comment.