import sys,os
from distutils.core import setup

sys.path.insert(0,os.getcwd())

import pyweblib

setup(
  #-- Package description
  name = 'pyweblib',
  license = 'GPL (GNU GENERAL PUBLIC LICENSE) Version 2',
  version = pyweblib.__version__,
  description = 'web application library',
  long_description = """Web application library:
pyweblib.forms        class library for handling <FORM> input
pyweblib.session      server-side web session handling
pyweblib.helper       misc. stuff useful in CGI-BINs
pyweblib.sslenv       retrieves SSL-related env vars
pyweblib.httphelper   very basic HTTP functions
""",
  author = 'Michael Stroeder', 
  author_email = 'michael@stroeder.com',
  maintainer = 'Michael Stroeder', 
  maintainer_email = 'michael@stroeder.com',
  url = 'http://www.stroeder.com/pylib/PyWebLib/',
  packages = ['pyweblib'],
#  keywords = ['web programming','CGI-BIN','session handling','form handling']
)

