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

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

Properties

Name Value
svn:executable *
svn:keywords Id