diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..4db340f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include LICENSE +include README.md +recursive-include janus *.html diff --git a/setup.py b/setup.py index 23d0589..89518b0 100644 --- a/setup.py +++ b/setup.py @@ -12,12 +12,7 @@ url="http://github.com/smartlgt/janus_package", zip_safe=False, packages=find_packages(), - package_data={ - "janus": ["janus/templates/*.html", - "janus/templates/pages/*.html", - "janus/templates/account/*.html", - "janus/templates/registration/*.html", - ]}, + include_package_data=True, install_requires=[ "django>=2.0", "django-oauth-toolkit==1.2.0",