insert_above is integrated for adding js/css on the fly
[myslice.git] / devel / django-insert-above-1.0.4 / setup.py
1 #!/usr/bin/env python
2 import os
3 from distutils.core import setup
4
5 def read(fname):
6     return open(os.path.join(os.path.dirname(__file__), fname)).read()
7
8 setup(name = 'django-insert-above',
9     version = '1.0.4',
10     description = 'These django templatetags is a hack making possible to insert "content" in some (maybe above the current or parent template) places.',
11     author = 'German Ilyin',
12     author_email = 'germanilyin@gmail.com',
13     url = 'https://github.com/yunmanger1/django-insert-above/',
14     license = 'WTFPL',
15     long_description = read('README'),
16     packages = ['insert_above', 'insert_above.templatetags'],
17     classifiers = [
18         "Development Status :: 3 - Alpha",
19         "Topic :: Utilities",
20         "Environment :: Plugins",
21         "Framework :: Django",
22         "Intended Audience :: Developers",
23         "License :: Freeware",
24         "Programming Language :: Python :: 2.6",
25     ],
26 )