1 |
douglas |
3 |
#!/usr/bin/env python |
2 |
douglas |
25 |
# DT Flickr |
3 |
douglas |
3 |
# |
4 |
|
|
# Douglas Thrift |
5 |
|
|
# |
6 |
|
|
# $Id$ |
7 |
|
|
|
8 |
|
|
from setuptools import setup, find_packages |
9 |
|
|
|
10 |
|
|
setup( |
11 |
|
|
name = 'dtflickr', |
12 |
douglas |
39 |
version = '1.4', |
13 |
douglas |
3 |
packages = find_packages(), |
14 |
douglas |
4 |
platforms = ['any'], |
15 |
douglas |
39 |
extras_require = { |
16 |
|
|
'simplejson': ['simplejson>=1.7'], |
17 |
|
|
}, |
18 |
douglas |
3 |
author = 'Douglas Thrift', |
19 |
|
|
author_email = 'douglas@douglasthrift.net', |
20 |
douglas |
15 |
description = 'Spiffy Flickr API library using JSON', |
21 |
douglas |
6 |
long_description = 'DT Flickr is a spiffy automagically built Flickr API library for Python using JSON.', |
22 |
douglas |
3 |
license = 'Apache License, Version 2.0', |
23 |
douglas |
20 |
keywords = 'flickr api', |
24 |
douglas |
25 |
url = 'http://code.douglasthrift.net/trac/dtflickr', |
25 |
douglas |
4 |
classifiers = [ |
26 |
douglas |
18 |
'Development Status :: 5 - Production/Stable', |
27 |
douglas |
4 |
'Intended Audience :: Developers', |
28 |
|
|
'License :: OSI Approved :: Apache Software License', |
29 |
|
|
'Operating System :: OS Independent', |
30 |
|
|
'Programming Language :: Python', |
31 |
|
|
'Topic :: Multimedia :: Graphics', |
32 |
|
|
'Topic :: Software Development :: Libraries :: Python Modules', |
33 |
|
|
], |
34 |
douglas |
3 |
) |