1 |
douglas |
2 |
#!/usr/bin/env python |
2 |
|
|
# Delicious API |
3 |
|
|
# |
4 |
|
|
# Douglas Thrift |
5 |
|
|
# |
6 |
|
|
# $Id$ |
7 |
|
|
|
8 |
|
|
from setuptools import setup, find_packages |
9 |
|
|
|
10 |
|
|
setup( |
11 |
|
|
name = 'dtdelicious', |
12 |
|
|
version = '0.9', |
13 |
|
|
packages = find_packages(), |
14 |
|
|
platforms = ['any'], |
15 |
|
|
install_requires = ['pytz', 'simplejson>=1.7'], |
16 |
|
|
author = 'Douglas Thrift', |
17 |
|
|
author_email = 'douglas@douglasthrift.net', |
18 |
|
|
description = 'Spiffy Delicious API', |
19 |
|
|
long_description = '.', |
20 |
|
|
license = 'Apache License, Version 2.0', |
21 |
|
|
keywords = 'flickr api', |
22 |
|
|
requires = ['pytz', 'simplejson (>=1.7)'], |
23 |
|
|
url = 'http://svn.douglasthrift.net/trac/dtflickr', |
24 |
|
|
classifiers = [ |
25 |
|
|
'Development Status :: 5 - Production/Stable', |
26 |
|
|
'Intended Audience :: Developers', |
27 |
|
|
'License :: OSI Approved :: Apache Software License', |
28 |
|
|
'Operating System :: OS Independent', |
29 |
|
|
'Programming Language :: Python', |
30 |
|
|
'Topic :: Software Development :: Libraries :: Python Modules', |
31 |
|
|
], |
32 |
|
|
) |