diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..dcec532 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include linkstore/static * +recursive-include linkstore/templates * \ No newline at end of file diff --git a/setup.py b/setup.py index 271b510..ee87f4e 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,8 @@ setup( name='linkstore', description='Django app for collapsible link categories', author='Raphael Roberts', - packages=['linkstore'], + packages=['linkstore', 'linkstore.migrations'], author_email='raphael.roberts48@gmail.com', install_requires=INSTALL_REQUIRES, + include_package_data=True, )