From 00e1e473fcd2ddf26f1a537a5eda07b8a65c430b Mon Sep 17 00:00:00 2001 From: Tim Buckley Date: Tue, 11 Aug 2015 17:06:09 -0600 Subject: [PATCH] Move export_static.py to export.py; add executable command definition to setup.cfg to install `stackviz-export` command during `setup.py install`. --- setup.cfg | 4 ++++ export_static.py => stackviz/export.py | 0 2 files changed, 4 insertions(+) rename export_static.py => stackviz/export.py (100%) diff --git a/setup.cfg b/setup.cfg index 15e664c..18c69f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,6 +24,10 @@ classifier = packages = stackviz +[entry_points] +console_scripts = + stackviz-export = stackviz.export:main + [build_sphinx] source-dir = doc/source build-dir = doc/build diff --git a/export_static.py b/stackviz/export.py similarity index 100% rename from export_static.py rename to stackviz/export.py