#!/usr/bin/python try: from setuptools import setup except ImportError: from distutils.core import setup __version__ = '2.4.3' 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"], include_package_data = True, 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' ] )