From 099f67badbe3264ebe0c1261659b7d090dc15433 Mon Sep 17 00:00:00 2001 From: Matt Swain Date: Fri, 24 Jan 2014 11:11:52 +0000 Subject: [PATCH] Change python bindings package name to openbabel-python --- scripts/python/README.rst | 4 ++-- scripts/python/setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/python/README.rst b/scripts/python/README.rst index 904f2e918..842d8997c 100644 --- a/scripts/python/README.rst +++ b/scripts/python/README.rst @@ -38,13 +38,13 @@ Installation :: - pip install openbabel + pip install openbabel-python **Option 2**: Download the latest release and install yourself. :: - tar -xzvf openbabel-1.8.tar.gz + tar -xzvf openbabel-python-1.8.tar.gz cd openbabel-1.8 python setup.py install diff --git a/scripts/python/setup.py b/scripts/python/setup.py index 4046256d7..deff06e5a 100644 --- a/scripts/python/setup.py +++ b/scripts/python/setup.py @@ -103,7 +103,7 @@ class CustomBuildExt(build_ext): obextension = Extension('_openbabel', ['openbabel-python.i'], libraries=['openbabel']) -setup(name='openbabel', +setup(name='openbabel-python', version=__version__, author=__author__, author_email=__email__,