added setup.cfg for missing .pyo problem when building rpms with python 2.4.

update version to 1.1.1.
This commit is contained in:
jortel 2007-12-17 19:16:06 +00:00
parent bca598f7a7
commit f445f973e0
3 changed files with 27 additions and 2 deletions

8
README
View File

@ -138,4 +138,10 @@ dot notation as follows:
>
> name = service.get_instance('person.name')
>
>
BUILD-NOTES:
python 2.4:
add (sed -i -e 's@\(.\+\)\.pyc$@\1.pyc\n\1.pyo@' INSTALLED_FILES) to the rpm.spec

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[install]
optimize = 1

View File

@ -1,3 +1,20 @@
#!/usr/bin/python
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# written by: Jeff Ortel ( jortel@redhat.com )
import sys
from setuptools import setup, find_packages
@ -10,7 +27,7 @@ else:
setup(
name="suds",
version="0.1",
version="0.1.1",
description="Lightweight SOAP client",
author="Jeff Ortel",
author_email="jortel@redhat.com",