Skip to content

Commit c0cb459

Browse files
committed
Tune setup.py
1 parent cc3947f commit c0cb459

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

setup.py

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
from distutils.core import setup
22

33
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."),
1921
classifiers=['Development Status :: 4 - Beta',
2022
'Environment :: Web Environment',
2123
'Framework :: Django',

0 commit comments

Comments
 (0)