From: alexander s. <a1...@us...> - 2006-10-30 04:32:08
|
Update of /cvsroot/dbfpy/dbfpy In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv10067 Modified Files: setup.py Log Message: added full metadata for registration at python cheese shop Index: setup.py =================================================================== RCS file: /cvsroot/dbfpy/dbfpy/setup.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** setup.py 30 Oct 2006 03:16:22 -0000 1.7 --- setup.py 30 Oct 2006 04:31:55 -0000 1.8 *************** *** 3,6 **** --- 3,20 ---- from distutils.core import setup + DESCRIPTION = """\ + dbfpy is a python-only module for reading and writing DBF-files. + It was created by Jeff Kunce and then modified by Hans Fiby + and Yaroslav Samchuk. + + dbfpy can read and write simple DBF-files. The `DBF-format + <http://www.clicketyclick.dk/databases/xbase/format/>`_ + was developed about 30 years ago and was used by a number + of simple database applications (dBase, Foxpro, Clipper, ...). + The basic datatypes numbers, short text, and dates are available. + Many different extensions have been used; dbfpy can read and write + only simple DBF-files. + """ + def run(): setup(name="dbfpy", *************** *** 10,14 **** --- 24,41 ---- license="public domain", author="Jeff Kunce", + maintainer_email="dbf...@li...", packages=["dbfpy"], + long_description=DESCRIPTION, + download_url= + "http://sourceforge.net/project/showfiles.php?group_id=140566", + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: Public Domain", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Topic :: Database", + "Topic :: Software Development :: Libraries :: Python Modules", + ], ) |