#!/usr/bin/env python
# Flickr API
#
# Douglas Thrift
#
# $Id$

from setuptools import setup, find_packages

setup(
	name = 'dtflickr',
	version = '0.9a1',
	packages = find_packages(),
	platforms = ['any'],
	install_requires = ['simplejson>=1.7'],
	author = 'Douglas Thrift',
	author_email = 'douglas@douglasthrift.net',
	description = 'Spiffy Flickr API using JSON',
	long_description = 'A spiffy automagically built Flickr API for Python using JSON.',
	license = 'Apache License, Version 2.0',
	url = 'http://svn.douglasthrift.net/trac/dtflickr/',
	classifiers = [
		'Development Status :: 3 - Alpha',
		'Intended Audience :: Developers',
		'License :: OSI Approved :: Apache Software License',
		'Operating System :: OS Independent',
		'Programming Language :: Python',
		'Topic :: Multimedia :: Graphics',
		'Topic :: Software Development :: Libraries :: Python Modules',
	],
)
