As part of my effort to make the RDKit easier to install, a very long-standing item on my ToDo list has come back up: setting the python code up as a python package.
In order to make this work, I need to change the way the code is imported. Instead of: >>> import Chem the "correct" way of doing an import will become: >>> from pyRDKit import Chem I put correct in quotes above because by setting your PYTHONPATH appropriately, all of your existing code will continue to work. My question is what the name of that package should be. I've temporarily selected pyRDKit, which isn't creative, but it is descriptive. Please send me other suggestions if you have them. -greg

