added tornado submod to setup
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/ed9dacac Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/ed9dacac Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/ed9dacac Branch: refs/heads/master Commit: ed9dacac6c1f6e5c72ccd73bf98726609a0079c0 Parents: 4c4efe8 Author: davebshow <davebs...@gmail.com> Authored: Tue Feb 21 14:20:37 2017 -0500 Committer: davebshow <davebs...@gmail.com> Committed: Tue Feb 28 10:33:21 2017 -0500 ---------------------------------------------------------------------- gremlin-python/src/main/jython/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ed9dacac/gremlin-python/src/main/jython/setup.py ---------------------------------------------------------------------- diff --git a/gremlin-python/src/main/jython/setup.py b/gremlin-python/src/main/jython/setup.py index 8b30b9f..da7da68 100644 --- a/gremlin-python/src/main/jython/setup.py +++ b/gremlin-python/src/main/jython/setup.py @@ -56,7 +56,9 @@ if sys.version_info < (3,2): setup( name='gremlinpython', version=version, - packages=['gremlin_python', 'gremlin_python.driver', 'gremlin_python.process', 'gremlin_python.structure', 'gremlin_python.structure.io'], + packages=['gremlin_python', 'gremlin_python.driver', + 'gremlin_python.driver.tornado', 'gremlin_python.process', + 'gremlin_python.structure', 'gremlin_python.structure.io'], license='Apache 2', url='http://tinkerpop.apache.org', description='Gremlin-Python for Apache TinkerPop',