refkit 0.0.1__tar.gz → 0.0.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: refkit
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Fast Python citation parsing, rendering, and BibTeX editing backed by Rust
5
5
  Author-email: Péter Ferenc Gyarmati <dev.petergy@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.14
17
17
  Classifier: Programming Language :: Rust
18
18
  Classifier: Typing :: Typed
19
19
  Requires-Python: <3.15,>=3.11
20
- Requires-Dist: refkit-core==0.0.1
20
+ Requires-Dist: refkit-core==0.0.2
21
21
  Description-Content-Type: text/markdown
22
22
 
23
23
  # refkit
@@ -230,7 +230,7 @@ out = df.select(
230
230
 
231
231
  ```bash
232
232
  uv sync --all-packages --group dev
233
- (cd packages/refkit-core-py && uv run maturin develop)
233
+ (cd packages/refkit-core && uv run maturin develop)
234
234
  uv run pytest packages/refkit/tests --no-cov
235
235
  ```
236
236
 
@@ -208,7 +208,7 @@ out = df.select(
208
208
 
209
209
  ```bash
210
210
  uv sync --all-packages --group dev
211
- (cd packages/refkit-core-py && uv run maturin develop)
211
+ (cd packages/refkit-core && uv run maturin develop)
212
212
  uv run pytest packages/refkit/tests --no-cov
213
213
  ```
214
214
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "refkit"
3
- version = "0.0.1"
3
+ version = "0.0.2"
4
4
  description = "Fast Python citation parsing, rendering, and BibTeX editing backed by Rust"
5
5
  readme = "README.md"
6
6
  license = "Apache-2.0"
@@ -22,7 +22,7 @@ classifiers = [
22
22
  "Typing :: Typed",
23
23
  ]
24
24
  dependencies = [
25
- "refkit-core==0.0.1",
25
+ "refkit-core==0.0.2",
26
26
  ]
27
27
 
28
28
  [build-system]
@@ -7,7 +7,7 @@ from os import PathLike
7
7
 
8
8
  import refkit_core as _core
9
9
 
10
- _COMPATIBLE_REFKIT_CORE_VERSION = "0.0.1"
10
+ _COMPATIBLE_REFKIT_CORE_VERSION = "0.0.2"
11
11
  __version__ = _metadata_version("refkit")
12
12
 
13
13
 
@@ -11,7 +11,7 @@ import pytest
11
11
 
12
12
  ROOT = Path(__file__).resolve()
13
13
  REFKIT_SRC = str(ROOT.parents[1] / "src")
14
- CORE_SRC = str(ROOT.parents[2] / "refkit-core-py" / "src")
14
+ CORE_SRC = str(ROOT.parents[2] / "refkit-core" / "src")
15
15
 
16
16
  CORE_EXPORTS = (
17
17
  "BibDocument",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes