My favorites | Sign in
Project Logo
                
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
#!/usr/bin/python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

__version__ = '2.4.2'
def get_tools():
import os
tools = []
for tool in os.listdir("tools"):
if not tool.startswith("."):
tools.append("tools/%s" % tool)
return tools


setup(name = "marajo",
version = __version__,
description = "Boto Based Web Framework",
long_description="Simple Web Framework for the boto library. Contains it's own webserver.",
author = "Chris Moyer",
author_email = "kopertop@gmail.com",
url = "http://marajo.googlecode.com",
packages = ['marajo', 'marajo.appengine', 'marajo.appengine.api', 'marajo.appengine.ext', 'marajo.appengine.filters', 'marajo.appengine.handlers', 'marajo.appengine.api.users', 'marajo.appengine.ext.db', 'marajo.appengine.ext.webapp', 'marajo.appengine.handlers.auth'],
install_requires = ["pyyaml", "paste", "webob", "simplejson", "docutils", "jinja2 >= 2.1dev"],
package_data = {"marajo.appengine": ["templates/**/*.tmpl", "templates/**/**/*.tmpl"]},
scripts = get_tools(),
license = 'MIT',
platforms = 'Posix; MacOS X',
classifiers = [ 'Development Status :: 3 - Alpha',
'Intended Audience :: Docworx Developers',
'License :: OSI Approved :: No License',
'Operating System :: Posix; MacOS X',
'Topic :: Internet'
]
)
Show details Hide details

Change log

r141 by kopertop on Mar 13, 2009   Diff
Updated static_file to not force HTTP
Go to: 
Project members, sign in to write a code review

Older revisions

r139 by kopertop on Feb 17, 2009   Diff
Bumped up version number for new
release
r117 by kopertop on Nov 04, 2008   Diff
Added content negotiation handling.

Now, if you add ".xml" to the end of
your request (before any GET
varaibles),
...
r109 by kopertop on Oct 27, 2008   Diff
Bump up version number
Added an RST filter for the templates
(copied from jinja1.1)
Updated the DB handler to properly
process multi-values from checkboxes
All revisions of this file

File info

Size: 1512 bytes, 36 lines
Hosted by Google Code