* added Scripts/create_deb_packages.sh
* better comment
* more cmake options
* rm ignored rdkitversion cmake flag
because it is overwritten by what is found in CMakeLists.txt:
```
set(RDKit_Year "2018")
set(RDKit_Month "05")
```
* this deps list is for Ubuntu
* rm -Wno-dev cmake option
* updated dependencies in comments
* first pass at adding an installation option for running the python tests
* only install the run_python_tests script if the tests themselves are installed
* 1194: Review assignments of range in Python code
Task-Url: https://github.com/rdkit/rdkit/issues/1194
Either wrapped the range expression into a list or made sure that the
code is working with a range object.
* Refactored FeatFinderCLI script
* Add unit test file for CLI apps in rdkit.Chem
Add tests for FeatFinderCLI
* Renamed the unit test file
* Slight improvement to test coverage
* Address comments from review
* Add script to Scripts folder #1305
* Replaced all uses of dict.has_key(key) in Python code - part 1
* Replaced all uses of dict.has_key(key) in Python code - part 1
* Replaced all uses of dict.has_key(key) in Python code - part 2 (sping)