mirror of
https://github.com/jazzband/django-defender.git
synced 2026-03-16 22:10:32 +00:00
fixed missing package_data
This commit is contained in:
parent
ea7a8cde06
commit
1816365ed7
1 changed files with 6 additions and 0 deletions
6
setup.py
6
setup.py
|
|
@ -37,6 +37,12 @@ setup(name='django-defender',
|
|||
author_email='kencochrane@gmail.com',
|
||||
license='Apache 2',
|
||||
packages=['defender'],
|
||||
package_data={
|
||||
"defender": ["templates/*.html",
|
||||
"migrations/*.py",
|
||||
"south_migrations/*.py",
|
||||
"exampleapp/*.*"],
|
||||
},
|
||||
install_requires=['Django>=1.6,<1.8', 'redis==2.10.3', 'hiredis==0.1.4'],
|
||||
tests_require=['mock', 'mockredispy', 'coverage', 'celery'],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue