#!/usr/bin/env python # -*- coding: utf-8 -*- #-------------------------------- #$Date$ #$Author$ #$Revision$ #-------------------------------- #Copyright (C) 2007 Alexander Koshelev (daevaorn@gmail.com) #from distutils.core import setup from setuptools import setup setup( name='pantheon', version='0.1', description="Set of django application-like extentions: indexing, paging, searching and etc.", long_description='', author='Alexander Koshelev', author_email='daevaorn@gmail.com', url='http://code.google.com/p/django-pantheon/', download_url='', keywords=[], license='MIT', platforms=['POSIX', 'Windows'], classifiers=[], scripts=[], packages=['pantheon'], )