Lower case the package name and fix website url

This commit is contained in:
Alex Clark 2010-11-28 10:24:57 -05:00
parent 48f8dbc2c6
commit fc970b29a6
2 changed files with 6 additions and 6 deletions

View File

@ -2,10 +2,10 @@
Changelog Changelog
========= =========
1.2.1 (11/26/2010) 1.3 (11/28/2010)
------------------ ----------------
- Add support for /lib64 library directory on Linux - Add support for /lib64 and /usr/lib64 library directories on Linux
1.2 (08/02/2010) 1.2 (08/02/2010)
---------------- ----------------

View File

@ -47,12 +47,12 @@ LCMS_ROOT = None
# -------------------------------------------------------------------- # --------------------------------------------------------------------
# Identification # Identification
NAME = "Pillow" NAME = "pillow"
DESCRIPTION = "Python Imaging Library (fork)" DESCRIPTION = "Python Imaging Library (fork)"
#AUTHOR = "Secret Labs AB (PythonWare)", "info@pythonware.com" #AUTHOR = "Secret Labs AB (PythonWare)", "info@pythonware.com"
AUTHOR = "Alex Clark (fork author)", "aclark@aclark.net" AUTHOR = "Alex Clark (fork author)", "aclark@aclark.net"
#HOMEPAGE = "http://www.pythonware.com/products/pil" #HOMEPAGE = "http://www.pythonware.com/products/pil"
HOMEPAGE = "http://github.com/collective.pillow" HOMEPAGE = "http://github.com/collective/pillow"
#DOWNLOAD_URL = "http://effbot.org/downloads/%s-%s.tar.gz" # name, version #DOWNLOAD_URL = "http://effbot.org/downloads/%s-%s.tar.gz" # name, version
# -------------------------------------------------------------------- # --------------------------------------------------------------------
@ -115,7 +115,7 @@ def find_version(filename):
return None return None
#VERSION = find_version("PIL/Image.py") #VERSION = find_version("PIL/Image.py")
VERSION = "1.2.1" VERSION = "1.3"
class pil_build_ext(build_ext): class pil_build_ext(build_ext):