Update of /cvsroot/pythonreports/PythonReports
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5166
Modified Files:
setup.py
Log Message:
added maintainer_email and download_url;
name the license and platform in addition to classifiers
Index: setup.py
===================================================================
RCS file: /cvsroot/pythonreports/PythonReports/setup.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** setup.py 3 Nov 2006 19:49:45 -0000 1.2
--- setup.py 4 Nov 2006 07:20:18 -0000 1.3
***************
*** 3,6 ****
--- 3,8 ----
# FIXME! generate_docs() must be reimplemented as a distutils command
"""History:
+ 04-nov-2006 [als] added maintainer_email and download_url;
+ name the license and platform in addition to classifiers
03-nov-2006 [als] read version number from the package sources;
generate htmls automatically (skip if no docutils);
***************
*** 88,95 ****
version=get_version(),
url="http://pythonreports.sourceforge.net/",
description="Database report generator",
long_description=DESCRIPTION,
author="alexander smishlajev",
! author_email="al...@ty...",
classifiers=[
"Development Status :: 3 - Alpha",
--- 90,103 ----
version=get_version(),
url="http://pythonreports.sourceforge.net/",
+ download_url=
+ "http://sourceforge.net/project/showfiles.php?group_id=181233",
description="Database report generator",
long_description=DESCRIPTION,
author="alexander smishlajev",
! author_email="al...@Ty...",
! # XXX maintainer_email always overwrites author_email.
! # (good thing too, but PyPI has two slots, and i'd like to
! # have both filled.)
! maintainer_email="pyt...@li...",
classifiers=[
"Development Status :: 3 - Alpha",
***************
*** 104,107 ****
--- 112,122 ----
"Topic :: Printing",
],
+ # cheeseshop says "you should enter a full description here
+ # only if appropriate classifiers aren't available", but
+ # if license and platforms settings are not present,
+ # they are filled with word "UNKNOWN" in PKG-INFO and PyPI
+ # registration.
+ license="MIT License",
+ platforms=["OS Independent"],
packages=["PythonReports"],
scripts=SCRIPTS,
|