Skip to content

Commit 39ae0fa

Browse files
committed
templates actually included now
1 parent cb33fe0 commit 39ae0fa

File tree

2 files changed

+23
-10
lines changed

2 files changed

+23
-10
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.markdown
2+
recursive-include alert/templates *

setup.py

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,35 @@
1-
__doc__ = """
2-
Send alerts, notifications, and messages based on events in your django application.
3-
4-
See the README file for details, usage info, and a list of gotchas.
5-
"""
6-
71
from setuptools import setup
82

93
setup(
104
name='django-alert',
11-
version='0.6.2',
5+
version='0.6.3',
6+
127
author='James Robert',
138
author_email='[email protected]',
9+
1410
description=('Send alerts, notifications, and messages based '
1511
'on events in your django application'),
12+
long_description=open('README.markdown').read(),
13+
1614
license='MIT',
1715
keywords='django alerts notifications social',
16+
1817
url='https://djangoalert.com',
19-
packages=['alert', 'alert.management', 'alert.management.commands', 'alert.migrations',],
20-
package_data = {'alert': ['templates/alerts/*']},
21-
long_description=__doc__,
18+
19+
install_requires=[
20+
"django",
21+
],
22+
23+
packages=[
24+
'alert',
25+
'alert.management',
26+
'alert.management.commands',
27+
'alert.migrations',
28+
],
29+
30+
include_package_data=True,
31+
32+
2233
classifiers=[
2334
'Development Status :: 5 - Production/Stable',
2435
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)