peritus / django_templatecomponents

A django application that makes it easy organize your component source (javascript, css) right in your django templates to to make your website much faster.

This URL has Read+Write access

django_templatecomponents / setup.py
100755 25 lines (22 sloc) 0.679 kb
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
#!/usr/bin/env python
from setuptools import setup, find_packages
 
version = '0.03'
 
setup(
    name='django-templatecomponents',
    version=version,
    description="django-templatecomponents",
    classifiers=[
        "Development Status :: 4 - Beta",
        "Programming Language :: Python",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Framework :: Django",
        "Environment :: Web Environment",
    ],
    keywords='templates,django',
    author='Filip Noetzel',
    url='http://j03.de/projects/django-templatecomponents/',
    license='Beerware',
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,
)