-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (39 loc) · 1.7 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
'''
Created on Jul 18, 2012
@author: Michele Sama ([email protected])
'''
#!/usr/bin/env python
from distutils.core import setup
setup(name = 'django-puzzledev-jom',
version = '1.0',
author = "Michele Sama",
author_email = "[email protected]",
maintainer = "Michele Sama",
maintainer_email = "[email protected]",
url = "www.puzzledev.com/",
description = "Automatically extracts and keep synchronized Javascript objects from Django models",
long_description = "django-jom is a Django/Javascript implementation of the SSMVC pattern. Interactive, rich and mobile web applications are based on the MVC pattern in which models contains the data on which the application is built. However mobile and Javascript clients are forced to replicate the MVC pattern in order to operate. The SSMVC pattern avoid code duplication by automatically extracting and synchronizing the front-end models with back-end.",
download_url = "https://github.com/msama/django-jom",
classifiers = [
'Environment :: Web Environment',
'Programming Language :: Python',
],
platforms = [
"Linux",
],
license = "LGPL",
packages = [
'jom',
'jom.management',
'jom.management.commands',
'jom.templatetags',
],
package_data = {
'jom': ['templates/*.*',
'templates/jom/*.*',
'templates/jom/templatetags/*.*',
'static/*.*',
'static/jom/*.*',
'static/jom/js/*.*'],
}
)