/setup.py
Python | 17 lines | 16 code | 1 blank | 0 comment | 0 complexity | 7514989f475928037c4efd9bb3ae35f4 MD5 | raw file
Possible License(s): BSD-3-Clause
1from distutils.core import setup
2
3setup(name='comment_utils',
4 version='0.3p1',
5 description='Comment-related utilities for Django applications',
6 author='James Bennett',
7 author_email='james@b-list.org',
8 url='http://code.google.com/p/django-comment-utils/',
9 packages=['comment_utils', 'comment_utils.templatetags'],
10 classifiers=['Development Status :: 4 - Beta',
11 'Environment :: Web Environment',
12 'Intended Audience :: Developers',
13 'License :: OSI Approved :: BSD License',
14 'Operating System :: OS Independent',
15 'Programming Language :: Python',
16 'Topic :: Utilities'],
17 )