-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix fps bug when creating heatmap frames
- Loading branch information
axwalker
committed
Feb 23, 2016
1 parent
8412d34
commit 5e123ee
Showing
2 changed files
with
39 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,18 @@ | |
required = f.read().splitlines() | ||
|
||
setup( | ||
name = 'heatmappy', | ||
packages = ['heatmappy'], | ||
version = '0.1.1', | ||
description = 'Draw image heatmaps in python', | ||
author = 'Lumen Research', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/LumenResearch/heatmappy', | ||
download_url = 'https://github.com/LumenResearch/heatmappy/tarball/0.1.1', | ||
keywords = ['image', 'heatmap', 'heat map'], | ||
install_requires=required, | ||
classifiers = [ | ||
'Programming Language :: Python :: 3' | ||
], | ||
include_package_data=True, | ||
name='heatmappy', | ||
packages=['heatmappy'], | ||
version='0.2.0', | ||
description='Draw image heatmaps in python', | ||
author='Lumen Research', | ||
author_email='[email protected]', | ||
url='https://github.com/LumenResearch/heatmappy', | ||
download_url='https://github.com/LumenResearch/heatmappy/tarball/0.1.1', | ||
keywords=['image', 'heatmap', 'heat map'], | ||
install_requires=required, | ||
classifiers=[ | ||
'Programming Language :: Python :: 3' | ||
], | ||
include_package_data=True, | ||
) |