File: setup.py

package info (click to toggle)
python-django-contact-form 0%2Bhg61-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 96 kB
  • ctags: 29
  • sloc: python: 121; makefile: 21
file content (17 lines) | stat: -rw-r--r-- 696 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup

setup(name='django-contact-form',
      version='0.3',
      description='Generic contact-form application for Django',
      author='James Bennett',
      author_email='james@b-list.org',
      url='http://code.google.com/p/django-contact-form/',
      packages=['contact_form'],
      classifiers=['Development Status :: 4 - Beta',
                   'Environment :: Web Environment',
                   'Intended Audience :: Developers',
                   'License :: OSI Approved :: BSD License',
                   'Operating System :: OS Independent',
                   'Programming Language :: Python',
                   'Topic :: Utilities'],
      )