#!/usr/bin/env python23
from distutils.core import setup
setup(name="pso",
version="0.98.D-beta",
description="Python Service Objects - An object orientated web development framework.",
author="thanos vassilakis",
author_email="thanos@scriptfoundry.com",
url="http://sourceforge.net/projects/pso",
package_dir = {'': 'py'},
packages=['pso'],
)
"""
classifiers= ['Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Developers']
"""
|