diff --git a/MANIFEST.in b/MANIFEST.in index 2a4ed4a6..3db99ef5 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ include AUTHORS include LICENSE include README.md -recursive-include pinax/notifications/static * +recursive-include pinax/notifications/locale * recursive-include pinax/notifications/templates * diff --git a/setup.py b/setup.py index 48a26909..6a7f0294 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ from setuptools import find_packages, setup - + VERSION = "5.0.0" LONG_DESCRIPTION = """ .. image:: http://pinaxproject.com/pinax-design/patches/pinax-notifications.svg @@ -12,7 +12,7 @@ .. image:: https://img.shields.io/pypi/v/pinax-notifications.svg :target: https://pypi.python.org/pypi/pinax-notifications/ -\ +\ .. image:: https://img.shields.io/circleci/project/github/pinax/pinax-notifications.svg :target: https://circleci.com/gh/pinax/pinax-notifications @@ -25,17 +25,17 @@ .. image:: https://img.shields.io/github/issues-pr-closed/pinax/pinax-notifications.svg :target: https://github.com/pinax/pinax-notifications/pulls?q=is%3Apr+is%3Aclosed -\ +\ .. image:: http://slack.pinaxproject.com/badge.svg :target: http://slack.pinaxproject.com/ .. image:: https://img.shields.io/badge/license-MIT-blue.svg :target: https://pypi.python.org/pypi/pinax-notifications/ -\ +\ ``pinax-notifications`` is a user notification management app for the Django web framework. - + ``pinax-notifications`` notifies users when certain events have occurred and allows configurable options for how those notifications are received. @@ -71,7 +71,10 @@ license="MIT", packages=find_packages(), package_data={ - "notifications": [] + "pinax.notifications": [ + "locale/**/**/*", + "templates/pinax/notifications/*" + ] }, classifiers=[ "Development Status :: 5 - Production/Stable", @@ -99,4 +102,4 @@ ], test_suite="runtests.runtests", zip_safe=False -) \ No newline at end of file +)