From: Alex M. <al...@us...> - 2005-11-11 21:52:34
|
Update of /cvsroot/gmpy/gmpy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21462 Modified Files: README setes.py setup.py Log Message: Minor cleanups in preparation for 1.01 release. Index: README =================================================================== RCS file: /cvsroot/gmpy/gmpy/README,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README 8 Aug 2003 11:29:43 -0000 1.1 --- README 11 Nov 2005 21:52:23 -0000 1.2 *************** *** 1,16 **** ! General MultiPrecision arithmetic for Python -- i.e., Python 2.3 ! interface module for library GMP 4 -- release 1.0 alpha (August 2003) Detailed documentation in subdirectory doc. ! To install GMPY 1.0 from sources (you need to have Python 2.3 and GMP 4 ! previously installed): at a shell prompt, python setup.py install ! Note that, on Windows, you may use the distributed binary release rather than having to rebuid from sources; to build from sources, you need a ! Windows installation of GMP 4 (ftp://ftp.whiterose.net/pub/lundman/). To test your installation: cd test, then python gmpy_test.py ! For any support request, mail Alex Martelli, al...@ya... --- 1,18 ---- ! General MultiPrecision arithmetic for Python -- i.e., Python 2.2/.3/2.4 ! interface module for library GMP 4 -- release 1.01 beta (Nov 2005). Detailed documentation in subdirectory doc. ! To install gmpy 1.01 from sources (you need to have Python 2.2 or better, and ! GMP 4, previously installed): at a shell prompt, python setup.py install ! Note that, on Windows, you may use the distributed binary release, rather than having to rebuid from sources; to build from sources, you need a ! Windows installation of GMP 4 (http://www.cs.nyu.edu/exact/core/gmp/). To test your installation: cd test, then python gmpy_test.py ! For any support request, mail Alex Martelli, al...@gm... (for bug ! reports, please use sourceforge.net's bug-report system instead). ! Index: setes.py =================================================================== RCS file: /cvsroot/gmpy/gmpy/setes.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** setes.py 8 Aug 2003 08:57:05 -0000 1.2 --- setes.py 11 Nov 2005 21:52:23 -0000 1.3 *************** *** 14,18 **** author = "Pearu Peterson", maintainer = "Alex Martelli", ! maintainer_email = "al...@ya...", url = "http://gmpy.sourceforge.net/", --- 14,18 ---- author = "Pearu Peterson", maintainer = "Alex Martelli", ! maintainer_email = "al...@gm...", url = "http://gmpy.sourceforge.net/", Index: setup.py =================================================================== RCS file: /cvsroot/gmpy/gmpy/setup.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** setup.py 10 Nov 2005 03:19:40 -0000 1.5 --- setup.py 11 Nov 2005 21:52:23 -0000 1.6 *************** *** 2,5 **** --- 2,12 ---- from distutils.core import setup, Extension + # patch distutils if it can't cope with the "classifiers" and + # "download_url" keywords + if sys.version < '2.2.3': + from distutils.dist import DistributionMetadata + DistributionMetadata.classifiers = None + DistributionMetadata.download_url = None + if sys.version.find('MSC')==-1: gmpy_ext = Extension('gmpy', sources=['src/gmpy.c'], *************** *** 13,20 **** setup (name = "gmpy", version = "1.01", - description = "GMP-3/4 to Python-2.{2,3,4} interface", maintainer = "Alex Martelli", ! maintainer_email = "al...@ya...", url = "http://gmpy.sourceforge.net/", ext_modules = [ gmpy_ext ] --- 20,42 ---- setup (name = "gmpy", version = "1.01", maintainer = "Alex Martelli", ! maintainer_email = "al...@gm...", url = "http://gmpy.sourceforge.net/", + description = "GMP-4 to Python-2.{2,3,4} interface", + download_url = "http://http://prdownloads.sourceforge.net/gmpy/gmpy-sources-101.zip?download", + + classifiers = [ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', + 'Natural Language :: English', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Programming Language :: C', + 'Programming Language :: Python', + 'Topic :: Scientific/Engineering :: Mathematics', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], ext_modules = [ gmpy_ext ] |