ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/dtflickr/trunk/setup.py
Revision: 41
Committed: 2009-09-01T04:01:29-07:00 (15 years, 9 months ago) by douglas
Content type: text/x-python
File size: 1049 byte(s)
Log Message:
Include LICENSE and NOTICE in source distributions even if setuptools fails at Subversion, grr!

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 41 include_package_data = True,
35     exclude_package_data = {'': ['LICENSE', 'NOTICE']},
36 douglas 3 )

Properties

Name Value
svn:executable *
svn:keywords Id