diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..e45dbae --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include common/templates * +recursive-include common/static * diff --git a/setup.py b/setup.py index 7a6729c..399d41d 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,13 @@ -from distutils.core import setup - -from setuptools import find_packages +from setuptools import find_packages, setup setup( name="django-common-utils", packages=find_packages(), + include_package_data=True, + package_data={ + "common": [ + "templates/**/*", + "static/**/*", + ], + }, )