/usr/share/pyshared/grapefruit-0.1a3.egg-info/PKG-INFO is in python-grapefruit 0.1~a3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | Metadata-Version: 1.1
Name: grapefruit
Version: 0.1a3
Summary: A module to manipulate color information easily.
Home-page: http://code.google.com/p/grapefruit/
Author: Xavier Basty
Author-email: xbasty@gmail.com
License: Apache License 2.0
Download-URL: http://grapefruit.googlecode.com/files/grapefruit-0.1a3.tar.gz
Description: =====================
README for GrapeFruit
=====================
Installing
============
**From the sources:**
Download the latest grapefruit library from:
http://code.google.com/p/grapefruit/
Untar the source distribution and run::
$ python setup.py build
$ python setup.py install
Testing
=========
With setuptools installed::
$ python setup.py test
Without setuptools installed::
$ python grapefruit_test.py
Getting the code
==================
View the trunk at:
http://grapefruit.googlecode.com/svn/trunk/
Check out the latest development version anonymously with::
$ svn checkout http://grapefruit.googlecode.com/svn/trunk/ GrapeFruit
Documentation
===============
You can download a compiled version of the documentation at:
http://http://code.google.com/p/grapefruit/downloads/list?q=label:Type-Docs
The documentation is generated from reStructuredText sources by Sphinx.
If you need to build it, go into the doc folder and run::
make <builder>
Or, if you're running windows::
makedoc.cmd
License
=========
::
Copyright (c) 2008, Xavier Basty
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
2008-06-15
- Released 0.1a3
- Added Gradient
2008-06-01
- Fixed overflow in alpha blending.
2008-05-29
- Added Saturate/Desaturate.
- Added MonochromeScheme
- Added the mode parameter to the generation methods to choose the
color wheel use for the generation (ryb/rgb).
2008-05-28
- Added the RGB<->RYB hue conversion.
- Added an angle parameter to the tetrad scheme to control the shape of
the rectangle.
2008-05-27
- Released 0.1a2
2008-05-24
- Fixed the HSL->RGB conversion
(the modulo in the hue conversion was 60 instead of 6.0!)
Updated the unit tests (which were wrong!)
2008-05-24
Released 0.1a1
- Convert the documentation to Sphinx
- Completed the unit tests
- Fixed some stupid typos
2008-05-22
- Refactored pretty much everything to more standard "Python coding style".
- Replaced the global variables by Color properties.
- Moved the module functions to static methods of Color.
- Completed the CIE white point dictionary to include all the standard
illuminants.
- Added doctest for all the functions.
- Fixed the conversions factors to get better results (more exact and
more symmetric).
- Changed the range of the L component from [0~1] to [0~100] (as it should
have been).
- Added packaging data and setup.
- Changed the structure of the unit tests.
2008-05-08
Released 0.1a0
- Initial checkin of grapefruit
Keywords: color conversion
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Multimedia :: Graphics
|