#!/usr/bin/env python # Delicious API # # Douglas Thrift # # $Id$ from setuptools import setup, find_packages setup( name = 'dtdelicious', version = '0.9', packages = find_packages(), platforms = ['any'], install_requires = ['pytz', 'simplejson>=1.7'], author = 'Douglas Thrift', author_email = 'douglas@douglasthrift.net', description = 'Spiffy Delicious API', long_description = '.', license = 'Apache License, Version 2.0', keywords = 'flickr api', requires = ['pytz', 'simplejson (>=1.7)'], url = 'http://svn.douglasthrift.net/trac/dtflickr', classifiers = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], )