Skip to content

Commit

Permalink
Make sure static files gets installed
Browse files Browse the repository at this point in the history
  • Loading branch information
fdanielsen committed May 20, 2014
1 parent 41e3aa6 commit 33d98dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include *.txt
recursive-include taggit_autocomplete_jqueryui/static *.css *.js *.png
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from distutils.core import setup
from setuptools import find_packages

setup(
name='django-taggit-autocomplete-jqueryui',
version='0.3dev',
packages=['taggit_autocomplete_jqueryui', ],
version='0.3.1dev',
packages=find_packages(),
include_package_data=True,
license='BSD License',
long_description=open('README.txt').read()
)

0 comments on commit 33d98dd

Please sign in to comment.