Skip to content

Commit

Permalink
Remove colorcorrect plugin for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaiter committed Feb 7, 2014
1 parent 16780aa commit b40e2ce
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 107 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@ source =
spreadsplug
omit =
spreads/vendor/*

[report]
exclude_lines =
pragma: no cover
raise NotImplementedError
pass
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ before_install:
- sleep 3
install:
- pip install -r requirements.txt --use-mirrors
- pip install -r requirements-test.txt --use-mirrors
- pip install .
script: py.test --cov spreads --cov spreadsplug
after_success: coveralls
60 changes: 29 additions & 31 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from setuptools import setup

if os.path.exists('README.rst'):
description_long = open('README.rst').read()
description_long=open('README.rst').read()
else:
description_long = """
description_long="""
spreads is a tool that aims to streamline your book scanning workflow. It
takes care of every step = Setting up your capturing devices, handling the
takes care of every step=Setting up your capturing devices, handling the
capturing process, downloading the images to your machine, post-processing them
and finally assembling a variety of output formats.
Expand All @@ -22,14 +22,14 @@
"""

setup(
name = "spreads",
author = "Johannes Baiter",
author_email = "[email protected]",
url = "http://spreads.readthedocs.org",
description = "Book digitization workflow suite",
long_description = description_long,
license = "GNU AGPLv3",
classifiers = [
name="spreads",
author="Johannes Baiter",
author_email="[email protected]",
url="http://spreads.readthedocs.org",
description="Book digitization workflow suite",
long_description=description_long,
license="GNU AGPLv3",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
Expand All @@ -43,25 +43,25 @@
"Topic :: Multimedia :: Graphics :: Capture",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
],
keywords = [
keywords=[
"digitization",
"scanning",
"chdk",
"diybookscanner",
"bookscanning",
],
packages = [
packages=[
"spreads",
"spreads.vendor",
"spreadsplug",
"spreadsplug.dev",
"spreadsplug.gui",
"spreadsplug.web",
],
scripts = [
scripts=[
"spread"
],
package_data = {
package_data={
'spreads': ['config_default.yaml'],
'spreadsplug.gui': ['pixmaps/monk.png'],
'spreadsplug.web': ['client/index.html', 'client/spreads.css',
Expand All @@ -71,32 +71,30 @@
'client/foundation/js/foundation.min.js',
]
},
entry_points = {
entry_points={
'spreadsplug.devices': [
"chdkcamera = spreadsplug.dev.chdkcamera:CHDKCameraDevice",
"a2200 = spreadsplug.dev.chdkcamera:CanonA2200CameraDevice",
"dummy = spreadsplug.dev.dummy:DummyDevice",
"chdkcamera=spreadsplug.dev.chdkcamera:CHDKCameraDevice",
"a2200=spreadsplug.dev.chdkcamera:CanonA2200CameraDevice",
],
'spreadsplug.hooks': [
"autorotate = spreadsplug.autorotate:AutoRotatePlugin",
"scantailor = spreadsplug.scantailor:ScanTailorPlugin",
"pdfbeads = spreadsplug.pdfbeads:PDFBeadsPlugin",
"djvubind = spreadsplug.djvubind:DjvuBindPlugin",
"colorcorrect = spreadsplug.colorcorrect:ColorCorrectionPlugin",
"tesseract = spreadsplug.tesseract:TesseractPlugin",
"gui = spreadsplug.gui:GuiCommand",
"web = spreadsplug.web:WebCommands",
"intervaltrigger = spreadsplug.intervaltrigger:IntervalTrigger",
"hidtrigger = spreadsplug.hidtrigger:HidTrigger",
"autorotate =spreadsplug.autorotate:AutoRotatePlugin",
"scantailor =spreadsplug.scantailor:ScanTailorPlugin",
"pdfbeads =spreadsplug.pdfbeads:PDFBeadsPlugin",
"djvubind =spreadsplug.djvubind:DjvuBindPlugin",
"tesseract =spreadsplug.tesseract:TesseractPlugin",
"gui =spreadsplug.gui:GuiCommand",
"web =spreadsplug.web:WebCommands",
"intervaltrigger=spreadsplug.intervaltrigger:IntervalTrigger",
"hidtrigger =spreadsplug.hidtrigger:HidTrigger",
]
},
install_requires = [
install_requires=[
"colorama>=0.2.5",
"PyYAML>=3.10",
"stevedore >= 0.9.1, < 0.14",
"futures >= 2.1.4",
],
extras_require = {
extras_require={
"chdkcamera": ["pyusb >= 1.0.0b1", "jpegtran-cffi >= 0.3"],
"autorotate": ["jpegtran-cffi >= 0.3"],
"colorcorrect": ["Wand >= 0.3.5"],
Expand Down
76 changes: 0 additions & 76 deletions spreadsplug/colorcorrect.py

This file was deleted.

0 comments on commit b40e2ce

Please sign in to comment.