Skip to content

Commit

Permalink
Fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
paltman committed Jan 15, 2018
1 parent da40f6b commit 42b31b2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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 *
17 changes: 10 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand All @@ -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.
Expand Down Expand Up @@ -71,7 +71,10 @@
license="MIT",
packages=find_packages(),
package_data={
"notifications": []
"pinax.notifications": [
"locale/**/**/*",
"templates/pinax/notifications/*"
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down Expand Up @@ -99,4 +102,4 @@
],
test_suite="runtests.runtests",
zip_safe=False
)
)

0 comments on commit 42b31b2

Please sign in to comment.