ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/dtflickr/trunk/setup.py
Revision: 39
Committed: 2009-08-16T03:27:21-07:00 (15 years, 10 months ago) by douglas
Content type: text/x-python
File size: 966 byte(s)
Log Message:
No longer depend on simplejson as it is included with Python 2.6 and up as json; better Windows Vista installer support; get ready to release as 1.4.

File Contents

# Content
1 #!/usr/bin/env python
2 # DT Flickr
3 #
4 # Douglas Thrift
5 #
6 # $Id$
7
8 from setuptools import setup, find_packages
9
10 setup(
11 name = 'dtflickr',
12 version = '1.4',
13 packages = find_packages(),
14 platforms = ['any'],
15 extras_require = {
16 'simplejson': ['simplejson>=1.7'],
17 },
18 author = 'Douglas Thrift',
19 author_email = 'douglas@douglasthrift.net',
20 description = 'Spiffy Flickr API library using JSON',
21 long_description = 'DT Flickr is a spiffy automagically built Flickr API library for Python using JSON.',
22 license = 'Apache License, Version 2.0',
23 keywords = 'flickr api',
24 url = 'http://code.douglasthrift.net/trac/dtflickr',
25 classifiers = [
26 'Development Status :: 5 - Production/Stable',
27 '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 )

Properties

Name Value
svn:executable *
svn:keywords Id