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

from setuptools import setup, find_packages

setup(
	name = 'dtflickr',
	version = '0.9a1',
	packages = find_packages(),
	install_requires = ['simplejson>=1.7'],
	author = 'Douglas Thrift',
	author_email = 'douglas@douglasthrift.net',
	description = 'Automagical Flickr API',
	license = 'Apache License, Version 2.0',
)
