paperconan 0.5.0__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.
paperconan/__init__.py ADDED
@@ -0,0 +1,13 @@
1
+ """paperconan — 论文数据 sanity check.
2
+
3
+ Run on a directory of supplementary source-data xlsx files and surface
4
+ numeric patterns that warrant a closer look (identical columns, byte-identical
5
+ replicates, fixed arithmetic grids, last-digit anomalies, …).
6
+
7
+ The output is a *signal*, not a verdict — final adjudication belongs to
8
+ journal editors and the original authors. See README for full usage.
9
+ """
10
+ from ._audit import scan_dir, main # noqa: F401
11
+ from ._html import write_html_report # noqa: F401
12
+
13
+ __version__ = "0.5.0"
paperconan/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Allows `python -m paperconan <in_dir>`."""
2
+ from ._audit import main
3
+
4
+ if __name__ == "__main__":
5
+ main()