Skip to content
This repository was archived by the owner on Jan 22, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions mol2vec/app/mol2vec.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import argparse
import sys
import six

from mol2vec import features
if six.PY2:
from .. import features
else:
from mol2vec import features

def do_corpus(args):
print('Generating corpus file.')
Expand Down Expand Up @@ -166,4 +170,4 @@ def run():


if __name__ == '__main__':
run()
run()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
author_email='samo.turk@gmail.com, sabrina.jaeger@t-online.de, fulle@bio.mx',
license='BSD 3-clause',
packages=find_packages(),
install_requires=['numpy', 'gensim', 'tqdm', 'joblib', 'pandas', 'matplotlib', 'IPython', 'seaborn'],
install_requires=['numpy', 'gensim', 'tqdm', 'joblib', 'pandas', 'matplotlib', 'IPython', 'seaborn', 'six'],
zip_safe=False,
entry_points="""
[console_scripts]
Expand Down