#!/usr/bin/python
# -*- coding: koi8-r -*-
from distutils.core import setup,sys
import os

if sys.version < '2.2.3':
    from distutils.dist import DistributionMetadata
    DistributionMetadata.classifiers = None
    DistributionMetadata.download_url = None

# Set proper release version in source code also!!!
setup(name='tcm',
      version='0.1',
      author='Pete Savage',
      author_email='petesavage@ubuntu.com',
      url='http://launchpad.net/python-tcm/',
      description='functions to access ltsp servers for tcm',
      long_description="""This library provides functionality for interfacing with tcm ltsp 
admin interfaces.

It is distributed under the terms of GPL.""",
      download_url='http://launchpad.net/python-tcm/',
      packages=['tcm'],
      license="GPL",
      platforms="All",
      keywords=['ltsp','thinclient'],
      classifiers = [
          'Topic :: System :: Systems Administration',
          'License :: OSI Approved :: GNU General Public License (GPL)',
          'Operating System :: OS Independent',
          'Programming Language :: Python',
          'Natural Language :: English',
          'Development Status :: 2 - Beta',
          'Intended Audience :: Developers',
        ],
     )

"""
setup(name='tcm-gui',
      version='0.1',
      author='Pete Savage',
      author_email='petesavage@ubuntu.com',
      url='http://launchpad.net/python-tcm/',
      description='functions to access ltsp servers for tcm',
      long_description=This library provides functionality for interfacing with tcm ltsp 
admin interfaces.

It is distributed under the terms of GPL.,
      download_url='http://launchpad.net/python-tcm/',
      packages=['tcm-gui'],
      license="GPL",
      platforms="All",
      keywords=['ltsp','thinclient'],
      classifiers = [
          'Topic :: System :: Systems Administration',
          'License :: OSI Approved :: GNU General Public License (GPL)',
          'Operating System :: OS Independent',
          'Programming Language :: Python',
          'Natural Language :: English',
          'Development Status :: 2 - Beta',
          'Intended Audience :: Developers',
        ],
     )
"""
