-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (47 loc) · 1.77 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
django_plist_packages = [
'django_plist',
'django_plist.views',
'django_plist.templatetags',
'django_plist.tests',
'django_plist.tests.testapp'
]
django_plist_templates = [
'templates/django_plist/array.plist',
'templates/django_plist/dictionary.plist',
'tests/testapp/fixtures/authors.json'
]
long_description = """
============
django-plist
============
django-plist is a Django application that trivializes the serialization of
Django model objects into the XML format used by Property List files on the
Cocoa platform (iPhone/Mac OS X).
Installing
==========
Please refer to `INSTALL.markdown` for installation instructions. Notice the
last section on configuring Django and ensure that you have the correct
settings in `INSTALLED_APPS` and `TEMPLATE_LOADER`.
Using
=====
Usage instructions can be found in `docs/overview.markdown` which is also
available online. """ + "\n\n" + open('CHANGELOG.txt').read()
setup(name='django-plist',
version='0.6',
author='Steingrim Dovland',
author_email='[email protected]',
url='http://wiki.github.com/steingrd/django-plist',
description='Django app for serializing objects into Cocoa Property List XML',
long_description=long_description,
packages=django_plist_packages,
package_data={'django_plist': django_plist_templates},
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python'])