Skip to content
Commits on Source (8)
Metadata-Version: 1.1
Name: colormap
Version: 1.0.1
Version: 1.0.2
Summary: Utilities to ease manipulation of matplotlib colormaps and color codecs (e.g., hex2rgb)
Home-page: ['http://packages.python.org/colormap/']
Author: Thomas Cokelaer
Author-email: cokelaer@ebi.ac.uk
License: LGPL
Download-URL: ['http://pypi.python.org/pypi/colormap']
Description-Content-Type: UNKNOWN
Description: #############################
COLORMAP documentation
#############################
......@@ -64,7 +65,7 @@ Description: #############################
* Even simpler if the colormap is linear::
c = Colormap()
mycmap = c.cmap_linear('red', 'black', 'green')
mycmap = c.cmap_linear('red', 'white', 'green(w3c)')
cmap = c.test_colormap(mycmap)
.. image:: http://colormap.readthedocs.io/en/latest/_images/index-1.png
......
......@@ -55,7 +55,7 @@ Example
* Even simpler if the colormap is linear::
c = Colormap()
mycmap = c.cmap_linear('red', 'black', 'green')
mycmap = c.cmap_linear('red', 'white', 'green(w3c)')
cmap = c.test_colormap(mycmap)
.. image:: http://colormap.readthedocs.io/en/latest/_images/index-1.png
......
python-colormap (1.0.2-1) unstable; urgency=medium
* Team upload.
* New upstream version
* debhelper 12
* Standards-Version: 4.3.0
* cme fix dpkg-control
* Testsuite: autopkgtest-pkg-python
* Remove trailing whitespace in debian/copyright
-- Andreas Tille <tille@debian.org> Wed, 30 Jan 2019 15:10:47 +0100
python-colormap (1.0.1-2) unstable; urgency=medium
* Team upload.
......
......@@ -2,9 +2,9 @@ Source: python-colormap
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Afif Elghraoui <afif@debian.org>
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends:
debhelper (>= 11~),
Build-Depends: debhelper (>= 12~),
dh-python,
python-all,
python-setuptools,
......@@ -19,21 +19,20 @@ Build-Depends:
python-tk <!nocheck>,
python-nose <!nocheck>,
python3-tk <!nocheck>,
python3-nose <!nocheck>,
Standards-Version: 4.1.4
+Vcs-Browser: https://salsa.debian.org/med-team/python-colormap
+Vcs-Git: https://salsa.debian.org/med-team/python-colormap.git
python3-nose <!nocheck>
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/python-colormap
Vcs-Git: https://salsa.debian.org/med-team/python-colormap.git
Homepage: https://colormap.readthedocs.io/
Package: python-colormap
Architecture: all
Depends:
${python:Depends},
Depends: ${python:Depends},
${misc:Depends},
# not sure why these didn't get added by dh-python
python-matplotlib,
python-numpy,
python-easydev,
python-easydev
Description: ease manipulation of matplotlib colormaps and color codecs (Python 2)
The colormap package provides simple utilities to convert colors between RGB,
HEX, HLS, HUV and a class to easily build colormaps for matplotlib. All
......@@ -45,13 +44,12 @@ Description: ease manipulation of matplotlib colormaps and color codecs (Python
Package: python3-colormap
Architecture: all
Depends:
${python3:Depends},
Depends: ${python3:Depends},
${misc:Depends},
# not sure why these didn't get added by dh-python
python3-matplotlib,
python3-numpy,
python3-easydev,
python3-easydev
Description: ease manipulation of matplotlib colormaps and color codecs (Python 3)
The colormap package provides simple utilities to convert colors between RGB,
HEX, HLS, HUV and a class to easily build colormaps for matplotlib. All
......
[sdist]
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[upload_docs]
upload_dir = doc/build/html/
[global]
[sdist]
[build_sphinx]
source_dir = doc/source
build_dir = doc/build
all_files = 1
[nosetests]
where = test
with_coverage = True
cover_package = colormap
cover_erase = True
verbosity = 2
logging_level = ERROR
[tool:pytest]
addopts = --durations=10 --verbose -n 1 --cov fitter --cov-report term-missing
[upload_docs]
upload_dir = doc/build/html/
[egg_info]
tag_build =
tag_date = 0
......@@ -7,7 +7,7 @@ import glob
_MAJOR = 1
_MINOR = 0
_MICRO = 1
_MICRO = 2
version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO)
release = '%d.%d' % (_MAJOR, _MINOR)
......
Metadata-Version: 1.1
Name: colormap
Version: 1.0.1
Version: 1.0.2
Summary: Utilities to ease manipulation of matplotlib colormaps and color codecs (e.g., hex2rgb)
Home-page: ['http://packages.python.org/colormap/']
Author: Thomas Cokelaer
Author-email: cokelaer@ebi.ac.uk
License: LGPL
Download-URL: ['http://pypi.python.org/pypi/colormap']
Description-Content-Type: UNKNOWN
Description: #############################
COLORMAP documentation
#############################
......@@ -64,7 +65,7 @@ Description: #############################
* Even simpler if the colormap is linear::
c = Colormap()
mycmap = c.cmap_linear('red', 'black', 'green')
mycmap = c.cmap_linear('red', 'white', 'green(w3c)')
cmap = c.test_colormap(mycmap)
.. image:: http://colormap.readthedocs.io/en/latest/_images/index-1.png
......