dataknobs-xization 1.0.0__tar.gz → 1.0.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.

Potentially problematic release.


This version of dataknobs-xization might be problematic. Click here for more details.

@@ -0,0 +1,64 @@
1
+ .#*
2
+ *~
3
+ *#
4
+ .idea
5
+ .vscode
6
+ .pydevproject
7
+ venv/
8
+ .cache
9
+ **/.*env
10
+ *.pyc
11
+ **/__pycache__
12
+ .pytest_cache/
13
+ dist
14
+ .eggs/
15
+ *.egg-info
16
+ **/build
17
+ *.swp
18
+ *.orig
19
+ .project
20
+ .coverage*
21
+ _version.py.bld
22
+ .mypy_cache
23
+ **/build.log
24
+ .eggs
25
+ ignored
26
+ **/.ipynb_checkpoints
27
+ .s3_cache
28
+ .Trash-*
29
+ .DS_Store
30
+ **/_tmp
31
+ .data
32
+ *.so
33
+ .aws
34
+ VERSION
35
+ activate
36
+ .tox
37
+ .docker
38
+ .pypirc
39
+
40
+ # uv
41
+ .venv/
42
+ uv.lock
43
+ test-env/
44
+ .uv-cache/
45
+
46
+ # MkDocs documentation
47
+ site/
48
+
49
+ # Non-essential test coverage reports
50
+ coverage.xml
51
+ packages/data/coverage.xml
52
+
53
+ # Quality check artifacts
54
+ .quality-artifacts/*
55
+ !.quality-artifacts/quality-summary.json
56
+ !.quality-artifacts/environment.json
57
+ !.quality-artifacts/unit-test-results.xml
58
+ !.quality-artifacts/integration-test-results.xml
59
+ !.quality-artifacts/coverage.xml
60
+ !.quality-artifacts/coverage-unit.xml
61
+ !.quality-artifacts/coverage-integration.xml
62
+ !.quality-artifacts/lint-report.json
63
+ !.quality-artifacts/style-check.json
64
+ !.quality-artifacts/signature.sha256
@@ -0,0 +1 @@
1
+ 3.10
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataknobs-xization
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Text normalization and tokenization tools
5
5
  Author-email: Spence Koehler <KoehlerSB747@gmail.com>
6
6
  Requires-Python: >=3.10
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "dataknobs-xization"
3
- version = "1.0.0"
3
+ version = "1.0.1"
4
4
  description = "Text normalization and tokenization tools"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -1,9 +1,16 @@
1
1
  import json
2
2
  import os
3
+ import sys
4
+ from pathlib import Path
3
5
  from typing import Dict, List
4
6
 
5
7
  import pytest
6
8
 
9
+ # Add the package source to path for testing
10
+ src_path = Path(__file__).parent.parent / "src"
11
+ if str(src_path) not in sys.path:
12
+ sys.path.insert(0, str(src_path))
13
+
7
14
 
8
15
  def resources_path(package: str) -> str:
9
16
  """Compose the path to a package's resources.
@@ -1,47 +0,0 @@
1
- .#*
2
- *~
3
- *#
4
- .idea
5
- .vscode
6
- .pydevproject
7
- venv/
8
- .cache
9
- **/.*env
10
- *.pyc
11
- **/__pycache__
12
- .pytest_cache/
13
- dist
14
- .eggs/
15
- *.egg-info
16
- **/build
17
- *.swp
18
- *.orig
19
- .project
20
- .coverage*
21
- _version.py.bld
22
- .mypy_cache
23
- **/build.log
24
- .eggs
25
- ignored
26
- **/.ipynb_checkpoints
27
- .s3_cache
28
- .Trash-*
29
- .DS_Store
30
- **/_tmp
31
- .data
32
- *.so
33
- .aws
34
- VERSION
35
- activate
36
- .tox
37
- .docker
38
- .pypirc
39
-
40
- # uv
41
- .venv/
42
- uv.lock
43
- test-env/
44
- .uv-cache/
45
-
46
- # MkDocs documentation
47
- site/
@@ -1 +0,0 @@
1
- 3.9