rpms/python-exif/devel python-exif.spec,1.4,1.5 setup.py,1.1,1.2

Terje Røsten (terjeros) fedora-extras-commits at redhat.com
Sat Jan 19 21:22:33 UTC 2008


Author: terjeros

Update of /cvs/extras/rpms/python-exif/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv23541

Modified Files:
	python-exif.spec setup.py 
Log Message:
* Sat Jan 19 2008 Terje Rosten <terjeros at phys.ntnu.no> - 1.0.7-2
- Improve setup.py



Index: python-exif.spec
===================================================================
RCS file: /cvs/extras/rpms/python-exif/devel/python-exif.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- python-exif.spec	3 Jan 2008 20:22:07 -0000	1.4
+++ python-exif.spec	19 Jan 2008 21:21:55 -0000	1.5
@@ -5,8 +5,9 @@
 
 Summary: Python module to extract EXIF information
 Name:    python-exif
+# Remember to update setup.py 
 Version: 1.0.7
-Release: 1%{?dist}
+Release: 2%{?dist}
 License: BSD
 Group:   Development/Libraries
 URL:     http://sourceforge.net/projects/%{oname}/
@@ -43,6 +44,9 @@
 %{python_sitelib}/EXIF*
 
 %changelog
+* Sat Jan 19 2008 Terje Rosten <terjeros at phys.ntnu.no> - 1.0.7-2
+- Improve setup.py
+
 * Thu Jan  3 2008 Terje Rosten <terjeros at phys.ntnu.no> - 1.0.7-1
 - 1.0.7
 - Include egg info


Index: setup.py
===================================================================
RCS file: /cvs/extras/rpms/python-exif/devel/setup.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- setup.py	8 Aug 2007 14:57:01 -0000	1.1
+++ setup.py	19 Jan 2008 21:21:55 -0000	1.2
@@ -1,9 +1,23 @@
-# Copyright 2007 Terje Rosten <terjeros at phys.ntnu.no>
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+# Copyright 2008 Terje Rosten <terjeros at phys.ntnu.no>
 # License: BSD
 from distutils.core import setup
-setup(name='EXIF',
-      version='1.0.2',
-      py_modules=['EXIF'],
+desc = 'Python library to extract EXIF data from tiff and jpeg files'
+setup(name        = 'EXIF',
+      version     = '1.0.7',
+      author      = 'Ianaré Sévi',
+      description =  desc,
+      long_description =  desc,
+      url         = 'http://sourceforge.net/projects/exif-py/',
+      license     = 'BSD license',
+      py_modules  = ['EXIF'],
+      classifiers = ['Development Status :: 5 - Production/Stable',
+                     'Intended Audience :: Developers',
+                     'License :: OSI Approved :: BSD License',
+                     'Operating System :: OS Independent',
+                     'Programming Language :: Python',
+                     'Topic :: Graphics :: Software Development :: Libraries :: Python Modules ',
+                     'User Interface :: Command-line',
+                     ],
       )
-
-




More information about the fedora-extras-commits mailing list