setup.py: add data files

This commit is contained in:
Jérôme Schneider 2013-04-26 11:24:56 +02:00
parent a180690e0e
commit d225ccc882
1 changed files with 5 additions and 2 deletions

View File

@ -11,11 +11,14 @@ setup(name='passerelle',
author="Entr'ouvert",
author_email="info@entrouvert.com",
packages=find_packages(os.path.dirname(__file__) or '.'),
package_data = {
'passerelle': ['templates', 'datasources/templates']
},
install_requires=[
'django >= 1.4.2, < 1.5',
'django >= 1.4.2, < 1.6',
'django-model-utils',
],
dependency_links = [
'http://pypi.python.org/packages/source/d/django-jsonresponse/django-jsonresponse-0.5.tar.gz',
]
],
)