-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 919 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name = 'django-insert-above',
version = '1.0.4',
description = 'These django templatetags is a hack making possible to insert "content" in some (maybe above the current or parent template) places.',
author = 'German Ilyin',
author_email = '[email protected]',
url = 'https://github.com/yunmanger1/django-insert-above/',
license = 'WTFPL',
long_description = read('README'),
packages = ['insert_above', 'insert_above.templatetags'],
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Environment :: Plugins",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: Freeware",
"Programming Language :: Python :: 2.6",
],
)