Skip to content

Commit

Permalink
Bump version. Add pip upgrade instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mwojcikowski committed Jul 13, 2015
1 parent e2d0640 commit 1c07453
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 6 additions & 2 deletions README.md
Expand Up @@ -27,12 +27,16 @@ You can also use pip. All requirements besides toolkits (OpenBabel, RDKit) are i
Installing inside virtualenv is encouraged, but not necessary.
> pip install oddt
### Upgrading
To upgrade oddt using pip (without upgrading dependencies):
> pip install -U --no-deps oddt
### Documentation
Automatic documentation for ODDT is available on [Readthedocs.org](https://oddt.readthedocs.org/). Additionally it can be build localy:
> cd docs
> make html
> make latexpdf
### License
Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Expand Up @@ -35,7 +35,7 @@
'sphinx.ext.mathjax',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode',
'numpydoc',
'numpydoc',
]

autosummary_generate = True
Expand Down Expand Up @@ -65,7 +65,7 @@
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1.1'
release = '0.1.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -350,7 +350,7 @@
if os.environ.get('READTHEDOCS', None) == 'True':
# Invoke sphinx-apidoc
os.system("sphinx-apidoc -f -o rst/ ../oddt")

try:
from unittest.mock import MagicMock # Python 3.3
except ImportError:
Expand All @@ -363,7 +363,7 @@
# OpenBabel
'pybel': pybel,
'openbabel' : openbabel,

# RDK
'rdkit': rdkit,
'rdkit.Chem': rdkit.Chem,
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup,find_packages

setup(name='oddt',
version='0.1.1',
version='0.1.2',
description='Open Drug Discovery Toolkit',
author='Maciej Wojcikowski',
author_email='mwojcikowski@ibb.waw.pl',
Expand All @@ -13,4 +13,6 @@
package_data={'oddt.scoring.functions': ['NNScore/*.csv', 'RFScore/*.csv']},
setup_requires = ['numpy>=1.6.2'],
install_requires = open('requirements.txt', 'r').readlines(),
download_url = 'https://github.com/peterldowns/mypackage/tarball/0.1.2',
keywords = ['cheminformatics', 'qsar', 'virtual screening', 'docking', 'pipeline'],
)

0 comments on commit 1c07453

Please sign in to comment.