Newer
Older
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
readme = open('README.rst').read()
setup(
name='django-basetheme-bootstrap',
description='Django Basetheme Bootstrap',
long_description=readme,
author='Bryan Brancotte',
author_email='bryan.brancotte@pasteur.fr',
packages=['basetheme_bootstrap'],
install_requires=[
'django',
'django-crispy-forms'
],
package_data= {'basetheme_bootstrap' : [
"templatetags/*",
"templates/*",
] },