|
1 | 1 | from distutils.core import setup |
2 | 2 |
|
3 | 3 | setup( |
4 | | - name = "django-dajaxice", |
5 | | - version = "0.2", |
6 | | - author = "Benito Jorge Bastida Perez", |
7 | | - author_email = "me@jorgebastida.com", |
8 | | - description = "Agnostic and easy to use ajax library for django", |
9 | | - download_url = "http://cloud.github.com/downloads/jorgebastida/django-dajaxice/django-dajaxice-0.2.tar.gz", |
10 | | - url = "http://dajaxproject.com", |
11 | | - packages= ['dajaxice', 'dajaxice.templatetags', 'dajaxice.core', 'dajaxice.management', 'dajaxice.management.commands'], |
12 | | - package_data = {'dajaxice': ['templates/dajaxice/*']}, |
13 | | - long_description="""\ |
14 | | -Easy to use AJAX library for django, all the presentation logic |
15 | | -resides outside the views and doesn't require any JS Framework. |
16 | | -Dajaxice uses the unobtrusive standard-compliant (W3C) XMLHttpRequest |
17 | | -1.0 object. |
18 | | -""", |
| 4 | + name='django-dajaxice', |
| 5 | + version='0.5', |
| 6 | + author='Jorge Bastida', |
| 7 | + author_email='me@jorgebastida.com', |
| 8 | + description='Agnostic and easy to use ajax library for django', |
| 9 | + url='http://dajaxproject.com', |
| 10 | + packages=['dajaxice', |
| 11 | + 'dajaxice.templatetags', |
| 12 | + 'dajaxice.core', |
| 13 | + 'dajaxice.management', |
| 14 | + 'dajaxice.management.commands'], |
| 15 | + package_data={'dajaxice': ['templates/dajaxice/*']}, |
| 16 | + long_description=("Easy to use AJAX library for django, all the " |
| 17 | + "presentation logic resides outside the views and " |
| 18 | + "doesn't require any JS Framework. Dajaxice uses the " |
| 19 | + "unobtrusive standard-compliant (W3C) XMLHttpRequest " |
| 20 | + "1.0 object."), |
19 | 21 | classifiers=['Development Status :: 4 - Beta', |
20 | 22 | 'Environment :: Web Environment', |
21 | 23 | 'Framework :: Django', |
|
0 commit comments