Skip to content

Commit

Permalink
added a setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Jan 24, 2009
1 parent 557177c commit 7999fbd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
@@ -0,0 +1,23 @@
from distutils.core import setup

setup(
name='django-ajax-validation',
version='.5a',
description='Provides support for doing validation using Ajax(currently with jQuery) using your existing Django forms.',
long_description=open('docs/index.txt').read(),
author='Alex Gaynor',
author_email='alex.gaynor@gmail.com',
url='http://github.com/alex/django-ajax-validation/tree/master',
packages=[
'ajax_validation',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)

0 comments on commit 7999fbd

Please sign in to comment.