diff --git a/setup.py b/setup.py index 51d7a02..3d3faf3 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,11 @@ download_url='http://github.com/onrik/django-webshell/tarball/master', license='MIT', packages=find_packages(), + package_data={'webshell': [ + 'templates/webshell/*', + 'static/css/*', + 'static/js/*', + ]}, test_suite='runtests.runtests', classifiers=[ 'Development Status :: 5 - Production/Stable', diff --git a/webshell/__init__.py b/webshell/__init__.py index 02c4ad9..9eb0028 100644 --- a/webshell/__init__.py +++ b/webshell/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 2, 0) +VERSION = (0, 2, 1) def get_version():