mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
Updated setup.py and manifest template to use new static file location.
This commit is contained in:
parent
0bc5469460
commit
1cff31f515
2 changed files with 5 additions and 5 deletions
|
|
@ -4,4 +4,4 @@ include README.rst
|
|||
include MANIFEST.in
|
||||
recursive-include docs *.txt
|
||||
recursive-include dbtemplates/locale *
|
||||
recursive-include dbtemplates/media/dbtemplates *.css *.js
|
||||
recursive-include dbtemplates/static/dbtemplates *.css *.js
|
||||
|
|
|
|||
8
setup.py
8
setup.py
|
|
@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|||
setup(
|
||||
name='django-dbtemplates',
|
||||
version=__import__('dbtemplates').__version__,
|
||||
description='Template loader for database stored templates with extensible cache backend',
|
||||
description='Template loader for templates stored in the database',
|
||||
long_description=open('docs/overview.txt').read(),
|
||||
author='Jannis Leidel',
|
||||
author_email='jannis@leidel.info',
|
||||
|
|
@ -13,8 +13,8 @@ setup(
|
|||
package_data = {
|
||||
'dbtemplates': [
|
||||
'locale/*/LC_MESSAGES/*',
|
||||
'media/dbtemplates/css/*.css',
|
||||
'media/dbtemplates/js/*.js',
|
||||
'static/dbtemplates/css/*.css',
|
||||
'static/dbtemplates/js/*.js',
|
||||
],
|
||||
},
|
||||
classifiers=[
|
||||
|
|
@ -25,5 +25,5 @@ setup(
|
|||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Framework :: Django',
|
||||
]
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue