ChessAnalysisPipeline 0.0.12__py3-none-any.whl → 0.0.13__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ChessAnalysisPipeline might be problematic. Click here for more details.

CHAP/__init__.py CHANGED
@@ -21,3 +21,5 @@ appear in specific `Processor` implementations.
21
21
  from CHAP.reader import Reader
22
22
  from CHAP.processor import Processor
23
23
  from CHAP.writer import Writer
24
+
25
+ version = 'v0.0.13'
CHAP/common/__init__.py CHANGED
@@ -9,14 +9,17 @@ validating input data in some `Processor`s.
9
9
 
10
10
  from CHAP.common.reader import (
11
11
  BinaryFileReader,
12
- SpecReader,
12
+ H5Reader,
13
13
  MapReader,
14
14
  NexusReader,
15
+ SpecReader,
15
16
  URLReader,
16
17
  YAMLReader,
17
18
  )
18
19
  from CHAP.common.processor import (
20
+ AnimationProcessor,
19
21
  AsyncProcessor,
22
+ ImageProcessor,
20
23
  IntegrationProcessor,
21
24
  IntegrateMapProcessor,
22
25
  MapProcessor,
@@ -30,9 +33,10 @@ from CHAP.common.processor import (
30
33
  )
31
34
  from CHAP.common.writer import (
32
35
  ExtractArchiveWriter,
36
+ FileTreeWriter,
37
+ MatplotlibAnimationWriter,
33
38
  MatplotlibFigureWriter,
34
39
  NexusWriter,
35
40
  YAMLWriter,
36
41
  TXTWriter,
37
- FileTreeWriter,
38
42
  )