# HG changeset patch # User Gustavo Picon # Date 1271025126 18000 # Node ID 5eadeeb5f5a147891de5ef046c4840ab97552e09 # Parent 92ad00919c1f9633fb9f29b61b83c65b4991efbc setup.py diff -r 92ad00919c1f9633fb9f29b61b83c65b4991efbc -r 5eadeeb5f5a147891de5ef046c4840ab97552e09 setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Sun Apr 11 17:32:06 2010 -0500 @@ -0,0 +1,40 @@ +#!/usr/bin/env python + +import os +from distutils.core import setup + +version = '0.8a' + +classifiers = [ + "Development Status :: 3 - Alpha", + "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='tagtools', + version=version, + url='http://code.tabo.pe/tagtools/', + author='Gustavo Picon', + author_email='tabo@tabo.pe', + license='Apache License 2.0', + py_modules=['tagtools'], + description='Python helpers to work with tags.', + classifiers=classifiers, + long_description=long_desc, +)