paperstack-cli 0.3.0__tar.gz → 0.3.1__tar.gz

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.
Files changed (27) hide show
  1. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/PKG-INFO +1 -1
  2. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/pyproject.toml +1 -1
  3. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/dblp_index.py +1 -1
  4. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/.gitignore +0 -0
  5. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/LICENSE +0 -0
  6. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/README.md +0 -0
  7. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/scripts/build/site/app.js +0 -0
  8. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/scripts/build/site/entry.html +0 -0
  9. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/scripts/build/site/favicon.svg +0 -0
  10. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/scripts/build/site/index.html +0 -0
  11. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/scripts/build/site/style.css +0 -0
  12. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/scripts/build/vendor/marked.min.js +0 -0
  13. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/__init__.py +0 -0
  14. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/citations.py +0 -0
  15. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/cli.py +0 -0
  16. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/content/__init__.py +0 -0
  17. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/content/arxiv_pdf.py +0 -0
  18. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/content/arxiv_source.py +0 -0
  19. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/content/vendor/latexpand +0 -0
  20. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/content/vendor/latexpand.LICENSE +0 -0
  21. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/corpora.py +0 -0
  22. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/dblp_build.py +0 -0
  23. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/dblp_catalog.py +0 -0
  24. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/entry_types.py +0 -0
  25. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/entrypoint.py +0 -0
  26. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/metadata.py +0 -0
  27. {paperstack_cli-0.3.0 → paperstack_cli-0.3.1}/src/paperstack/viewer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: paperstack-cli
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Review, inspect, and retrieve research sources from one CLI
5
5
  Project-URL: Repository, https://github.com/MilkClouds/paperstack
6
6
  Project-URL: Issues, https://github.com/MilkClouds/paperstack/issues
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "paperstack-cli"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  description = "Review, inspect, and retrieve research sources from one CLI"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11.4" # First 3.11 release with tarfile.extractall(filter=).
@@ -23,7 +23,7 @@ ASSET_NAME = "dblp.parquet"
23
23
  MIN_RECORDS = 250_000
24
24
  SCHEMA_VERSION = "1"
25
25
  INDEX_URL = f"https://github.com/{RELEASE_REPO}/releases/download/dblp-index-{SNAPSHOT}/{ASSET_NAME}"
26
- INDEX_SHA256 = "fef4b46365331a81fa059852761d91b18a05ef5691169a17f9358e215bcb5fb0"
26
+ INDEX_SHA256 = "2656b1ea5423bfc93be48c4f75a6df94704cde155a064075e9e18fa6ef8938fa"
27
27
 
28
28
  COLUMNS = (
29
29
  "normalized_title",
File without changes
File without changes