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

# User Rev Content
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 )

Properties

Name Value
svn:executable *
svn:keywords Id