#!/usr/bin/env python import os from distutils.core import setup version = '2.1a' classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.0", "Programming Language :: Python :: 3.1", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries", ] root_dir = os.path.dirname(__file__) if not root_dir: root_dir = '.' long_desc = open(root_dir + '/README').read() setup( name='numconv', version=version, url='http://code.tabo.pe/numconv/', author='Gustavo Picon', author_email='tabo@tabo.pe', license='Apache License 2.0', py_modules=['numconv'], description='Python library to convert strings to numbers ' 'and numbers to strings.', classifiers=classifiers, long_description=long_desc, )