#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup readme = open('README.rst').read() setup( name='django-basetheme-bootstrap', version='0.0.2', 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' ], license="BSD", test_suite="runtests.run_all_tests", package_data= {'basetheme_bootstrap' : [ "templatetags/*", "templates/*", ] }, )