-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version to 0.2, update requirements and README
- Loading branch information
Showing
4 changed files
with
54 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
0.2 (2013/06/30) | ||
- New plugin system based on Doug Hellmann's `stevedore` package, | ||
allows packages to extend spreads without being included in the core | ||
distribution | ||
- The driver for CHDK cameras no longer relies on gphoto2 and ptpcam, | ||
but relies on Abel Deuring's `pyptpchdk` package to communicate with | ||
the cameras. | ||
- `Wand` is now used to deal with image data instead of `Pillow` | ||
- New 'colorcorrection' plugin allows users to automatically correct | ||
white balance. | ||
- Improved tutorial | ||
|
||
0.1 (2013/06/23) | ||
Initial release |
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
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 |
---|---|---|
|
@@ -3,11 +3,10 @@ | |
|
||
setup( | ||
name='spreads', | ||
version='0.1', | ||
version='0.2', | ||
author='Johannes Baiter', | ||
author_email='[email protected]', | ||
#packages=['spreads', 'spreadsplug'], | ||
packages=find_packages(), | ||
packages=['spreads', 'spreadsplug'], | ||
include_package_data=True, | ||
scripts=['spread', ], | ||
url='http://github.com/jbaiter/spreads', | ||
|
@@ -22,7 +21,6 @@ | |
"PyYAML >= 3.10", | ||
"Wand >= 0.3.1", | ||
"stevedore >= 0.9.1", | ||
"setuptools-git >= 1.0b1", | ||
], | ||
entry_points={ | ||
'spreadsplug.devices': [ | ||
|