reference-package 0.7.3__tar.gz → 0.7.9__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 (22) hide show
  1. {reference_package-0.7.3/src/reference_package.egg-info → reference_package-0.7.9}/PKG-INFO +12 -11
  2. {reference_package-0.7.3 → reference_package-0.7.9}/README.md +1 -1
  3. {reference_package-0.7.3 → reference_package-0.7.9}/setup.cfg +11 -10
  4. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/api/internal.py +4 -1
  5. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/api/public.py +3 -1
  6. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/cli/example.py +5 -1
  7. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/lib/constants.py +5 -0
  8. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/lib/example.py +4 -1
  9. {reference_package-0.7.3 → reference_package-0.7.9/src/reference_package.egg-info}/PKG-INFO +12 -11
  10. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package.egg-info/requires.txt +10 -9
  11. {reference_package-0.7.3 → reference_package-0.7.9}/LICENSE +0 -0
  12. {reference_package-0.7.3 → reference_package-0.7.9}/MANIFEST.in +0 -0
  13. {reference_package-0.7.3 → reference_package-0.7.9}/pyproject.toml +0 -0
  14. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/__init__.py +0 -0
  15. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/api/__init__.py +0 -0
  16. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/cli/__init__.py +0 -0
  17. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/lib/__init__.py +0 -0
  18. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package/py.typed +0 -0
  19. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package.egg-info/SOURCES.txt +0 -0
  20. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package.egg-info/dependency_links.txt +0 -0
  21. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package.egg-info/entry_points.txt +0 -0
  22. {reference_package-0.7.3 → reference_package-0.7.9}/src/reference_package.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reference_package
3
- Version: 0.7.3
3
+ Version: 0.7.9
4
4
  Summary: A basic package setup with examples.
5
5
  Author: Kaleb Coberly
6
6
  Maintainer-email: kaleb.coberly@gmail.com
@@ -9,17 +9,18 @@ Description-Content-Type: text/markdown
9
9
  License-File: LICENSE
10
10
  Requires-Dist: click
11
11
  Requires-Dist: comb_utils
12
+ Requires-Dist: nltk<4.0.0,>=3.9.3
12
13
  Requires-Dist: typeguard
13
- Requires-Dist: ipython<9.8.0,>=8.22.0
14
- Requires-Dist: matplotlib<3.11.0,>=3.9.0
14
+ Requires-Dist: ipython<9.11.0,>=8.25.0
15
+ Requires-Dist: matplotlib<3.11.0,>=3.10.0
15
16
  Requires-Dist: networkx<3.7.0,>=3.3.0
16
- Requires-Dist: numpy<2.4.0,>=2.0.0
17
- Requires-Dist: pandas<2.4.0,>=2.3.0
18
- Requires-Dist: scikit-image<0.26.0,>=0.23.0
19
- Requires-Dist: scikit-learn<1.8.0,>=1.5.0
20
- Requires-Dist: scipy<1.17.0,>=1.13.0
21
- Requires-Dist: xarray<2025.12.0,>=2024.3.0
22
- Requires-Dist: zarr<3.2.0,>=2.18.0
17
+ Requires-Dist: numpy<2.5.0,>=2.0.0
18
+ Requires-Dist: pandas<3.1.0,>=2.3.0
19
+ Requires-Dist: scikit-image<0.27.0,>=0.23.0
20
+ Requires-Dist: scikit-learn<1.9.0,>=1.5.0
21
+ Requires-Dist: scipy<1.18.0,>=1.14.0
22
+ Requires-Dist: xarray<2026.2.0,>=2024.6.0
23
+ Requires-Dist: zarr<3.2.0,>=3.0.0
23
24
  Provides-Extra: dev
24
25
  Requires-Dist: reference_package[build]; extra == "dev"
25
26
  Requires-Dist: reference_package[doc]; extra == "dev"
@@ -303,7 +304,7 @@ The shared workflows run a matrix of Python versions and OS versions. See https:
303
304
 
304
305
  While we run installation tests on Ubuntu, macOS, and Windows to ensure published packages work on all three, we run pre-publishing QC only on Ubuntu and macOS. The reason for this is that QC uses our dev tools and we don't yet support dev on Windows. Supporting Windows dev tools may only require a simple set of changes (e.g., conditionally setting filepath syntax), and is a welcome upgrade on the list of TODOs.
305
306
 
306
- We run QC and installation tests on a Python matrix as well (3.12 - 3.13 at time of writing). We set this matrix based on the Scientific Python SPEC 0 support window https://scientific-python.org/specs/spec-0000/#support-window. This support window includes common packages for scientific computing (e.g., `numpy` and `pandas`), and we recommend keeping relevant dependencies pinned within this support window when consuming shared tools.
307
+ We run QC and installation tests on a Python matrix as well (3.12 - 3.14 at time of writing). We set this matrix based on the Scientific Python SPEC 0 support window https://scientific-python.org/specs/spec-0000/#support-window. This support window includes common packages for scientific computing (e.g., `numpy` and `pandas`), and we recommend keeping relevant dependencies pinned within this support window when consuming shared tools.
307
308
 
308
309
  See https://github.com/crickets-and-comb/shared `.github/workflows/CI.yml` and `.github/workflows/test_install.yml`. See also the workflows within this repo that call them.
309
310
 
@@ -246,7 +246,7 @@ The shared workflows run a matrix of Python versions and OS versions. See https:
246
246
 
247
247
  While we run installation tests on Ubuntu, macOS, and Windows to ensure published packages work on all three, we run pre-publishing QC only on Ubuntu and macOS. The reason for this is that QC uses our dev tools and we don't yet support dev on Windows. Supporting Windows dev tools may only require a simple set of changes (e.g., conditionally setting filepath syntax), and is a welcome upgrade on the list of TODOs.
248
248
 
249
- We run QC and installation tests on a Python matrix as well (3.12 - 3.13 at time of writing). We set this matrix based on the Scientific Python SPEC 0 support window https://scientific-python.org/specs/spec-0000/#support-window. This support window includes common packages for scientific computing (e.g., `numpy` and `pandas`), and we recommend keeping relevant dependencies pinned within this support window when consuming shared tools.
249
+ We run QC and installation tests on a Python matrix as well (3.12 - 3.14 at time of writing). We set this matrix based on the Scientific Python SPEC 0 support window https://scientific-python.org/specs/spec-0000/#support-window. This support window includes common packages for scientific computing (e.g., `numpy` and `pandas`), and we recommend keeping relevant dependencies pinned within this support window when consuming shared tools.
250
250
 
251
251
  See https://github.com/crickets-and-comb/shared `.github/workflows/CI.yml` and `.github/workflows/test_install.yml`. See also the workflows within this repo that call them.
252
252
 
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = reference_package
3
- version = 0.7.3
3
+ version = 0.7.9
4
4
  description = A basic package setup with examples.
5
5
  long_description = file: README.md
6
6
  long_description_content_type = text/markdown
@@ -16,18 +16,19 @@ packages = find:
16
16
  install_requires =
17
17
  click
18
18
  comb_utils
19
+ nltk>=3.9.3,<4.0.0
19
20
  typeguard
20
21
 
21
- ipython>=8.22.0,<9.8.0
22
- matplotlib>=3.9.0,<3.11.0
22
+ ipython>=8.25.0,<9.11.0
23
+ matplotlib>=3.10.0,<3.11.0
23
24
  networkx>=3.3.0,<3.7.0
24
- numpy>=2.0.0,<2.4.0
25
- pandas>=2.3.0,<2.4.0
26
- scikit-image>=0.23.0,<0.26.0
27
- scikit-learn>=1.5.0,<1.8.0
28
- scipy>=1.13.0,<1.17.0
29
- xarray>=2024.3.0,<2025.12.0
30
- zarr>=2.18.0,<3.2.0
25
+ numpy>=2.0.0,<2.5.0
26
+ pandas>=2.3.0,<3.1.0
27
+ scikit-image>=0.23.0,<0.27.0
28
+ scikit-learn>=1.5.0,<1.9.0
29
+ scipy>=1.14.0,<1.18.0
30
+ xarray>=2024.6.0,<2026.2.0
31
+ zarr>=3.0.0,<3.2.0
31
32
 
32
33
  [options.extras_require]
33
34
  dev =
@@ -12,7 +12,10 @@ from reference_package.lib.constants import DocStrings
12
12
 
13
13
 
14
14
  @typechecked
15
- def wait_a_second(seconds: int = 1, extra_string: str = "") -> None: # noqa: D103
15
+ def wait_a_second( # noqa: D103
16
+ seconds: int = DocStrings.EXAMPLE_INTERNAL.defaults["seconds"],
17
+ extra_string: str = DocStrings.EXAMPLE_INTERNAL.defaults["extra_string"],
18
+ ) -> None:
16
19
  extra_string = extra_string.upper().strip()
17
20
  example.wait_a_second(seconds=seconds, extra_string=extra_string)
18
21
 
@@ -11,7 +11,9 @@ from reference_package.lib.constants import DocStrings
11
11
 
12
12
 
13
13
  @typechecked
14
- def wait_a_second(seconds: int = 1) -> None: # noqa: D103
14
+ def wait_a_second( # noqa: D103
15
+ seconds: int = DocStrings.EXAMPLE.defaults["seconds"],
16
+ ) -> None:
15
17
  example.wait_a_second(seconds=seconds)
16
18
 
17
19
 
@@ -14,7 +14,11 @@ from reference_package.lib.constants import DocStrings
14
14
 
15
15
  @click.command(help=DocStrings.EXAMPLE.cli_docstring)
16
16
  @click.option(
17
- "--seconds", type=int, required=False, default=1, help=DocStrings.EXAMPLE.args["seconds"]
17
+ "--seconds",
18
+ type=int,
19
+ required=False,
20
+ default=DocStrings.EXAMPLE.defaults["seconds"],
21
+ help=DocStrings.EXAMPLE.args["seconds"],
18
22
  )
19
23
  @typechecked
20
24
  def main(seconds: int) -> None: # noqa: D103
@@ -14,6 +14,7 @@ class DocStrings:
14
14
  Also prints a message with the number you passed.
15
15
  """,
16
16
  args={"seconds": "How many seconds to wait."},
17
+ defaults={"seconds": 1},
17
18
  raises=[],
18
19
  returns=[],
19
20
  )
@@ -27,6 +28,10 @@ class DocStrings:
27
28
  "seconds": "How many seconds to wait.",
28
29
  "extra_string": "Extra message to add on tail of existing message.",
29
30
  },
31
+ defaults={
32
+ "seconds": 1,
33
+ "extra_string": "",
34
+ },
30
35
  raises=[],
31
36
  returns=[],
32
37
  )
@@ -8,7 +8,10 @@ from reference_package.lib.constants import DocStrings
8
8
 
9
9
 
10
10
  @typechecked
11
- def wait_a_second(seconds: int = 1, extra_string: str = "") -> None: # noqa: D103
11
+ def wait_a_second( # noqa: D103
12
+ seconds: int = DocStrings.EXAMPLE_INTERNAL.defaults["seconds"],
13
+ extra_string: str = DocStrings.EXAMPLE_INTERNAL.defaults["extra_string"],
14
+ ) -> None:
12
15
  print(f"Waiting {seconds} seconds.{' ' + extra_string if extra_string else ''}")
13
16
  time.sleep(seconds)
14
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: reference_package
3
- Version: 0.7.3
3
+ Version: 0.7.9
4
4
  Summary: A basic package setup with examples.
5
5
  Author: Kaleb Coberly
6
6
  Maintainer-email: kaleb.coberly@gmail.com
@@ -9,17 +9,18 @@ Description-Content-Type: text/markdown
9
9
  License-File: LICENSE
10
10
  Requires-Dist: click
11
11
  Requires-Dist: comb_utils
12
+ Requires-Dist: nltk<4.0.0,>=3.9.3
12
13
  Requires-Dist: typeguard
13
- Requires-Dist: ipython<9.8.0,>=8.22.0
14
- Requires-Dist: matplotlib<3.11.0,>=3.9.0
14
+ Requires-Dist: ipython<9.11.0,>=8.25.0
15
+ Requires-Dist: matplotlib<3.11.0,>=3.10.0
15
16
  Requires-Dist: networkx<3.7.0,>=3.3.0
16
- Requires-Dist: numpy<2.4.0,>=2.0.0
17
- Requires-Dist: pandas<2.4.0,>=2.3.0
18
- Requires-Dist: scikit-image<0.26.0,>=0.23.0
19
- Requires-Dist: scikit-learn<1.8.0,>=1.5.0
20
- Requires-Dist: scipy<1.17.0,>=1.13.0
21
- Requires-Dist: xarray<2025.12.0,>=2024.3.0
22
- Requires-Dist: zarr<3.2.0,>=2.18.0
17
+ Requires-Dist: numpy<2.5.0,>=2.0.0
18
+ Requires-Dist: pandas<3.1.0,>=2.3.0
19
+ Requires-Dist: scikit-image<0.27.0,>=0.23.0
20
+ Requires-Dist: scikit-learn<1.9.0,>=1.5.0
21
+ Requires-Dist: scipy<1.18.0,>=1.14.0
22
+ Requires-Dist: xarray<2026.2.0,>=2024.6.0
23
+ Requires-Dist: zarr<3.2.0,>=3.0.0
23
24
  Provides-Extra: dev
24
25
  Requires-Dist: reference_package[build]; extra == "dev"
25
26
  Requires-Dist: reference_package[doc]; extra == "dev"
@@ -303,7 +304,7 @@ The shared workflows run a matrix of Python versions and OS versions. See https:
303
304
 
304
305
  While we run installation tests on Ubuntu, macOS, and Windows to ensure published packages work on all three, we run pre-publishing QC only on Ubuntu and macOS. The reason for this is that QC uses our dev tools and we don't yet support dev on Windows. Supporting Windows dev tools may only require a simple set of changes (e.g., conditionally setting filepath syntax), and is a welcome upgrade on the list of TODOs.
305
306
 
306
- We run QC and installation tests on a Python matrix as well (3.12 - 3.13 at time of writing). We set this matrix based on the Scientific Python SPEC 0 support window https://scientific-python.org/specs/spec-0000/#support-window. This support window includes common packages for scientific computing (e.g., `numpy` and `pandas`), and we recommend keeping relevant dependencies pinned within this support window when consuming shared tools.
307
+ We run QC and installation tests on a Python matrix as well (3.12 - 3.14 at time of writing). We set this matrix based on the Scientific Python SPEC 0 support window https://scientific-python.org/specs/spec-0000/#support-window. This support window includes common packages for scientific computing (e.g., `numpy` and `pandas`), and we recommend keeping relevant dependencies pinned within this support window when consuming shared tools.
307
308
 
308
309
  See https://github.com/crickets-and-comb/shared `.github/workflows/CI.yml` and `.github/workflows/test_install.yml`. See also the workflows within this repo that call them.
309
310
 
@@ -1,16 +1,17 @@
1
1
  click
2
2
  comb_utils
3
+ nltk<4.0.0,>=3.9.3
3
4
  typeguard
4
- ipython<9.8.0,>=8.22.0
5
- matplotlib<3.11.0,>=3.9.0
5
+ ipython<9.11.0,>=8.25.0
6
+ matplotlib<3.11.0,>=3.10.0
6
7
  networkx<3.7.0,>=3.3.0
7
- numpy<2.4.0,>=2.0.0
8
- pandas<2.4.0,>=2.3.0
9
- scikit-image<0.26.0,>=0.23.0
10
- scikit-learn<1.8.0,>=1.5.0
11
- scipy<1.17.0,>=1.13.0
12
- xarray<2025.12.0,>=2024.3.0
13
- zarr<3.2.0,>=2.18.0
8
+ numpy<2.5.0,>=2.0.0
9
+ pandas<3.1.0,>=2.3.0
10
+ scikit-image<0.27.0,>=0.23.0
11
+ scikit-learn<1.9.0,>=1.5.0
12
+ scipy<1.18.0,>=1.14.0
13
+ xarray<2026.2.0,>=2024.6.0
14
+ zarr<3.2.0,>=3.0.0
14
15
 
15
16
  [build]
16
17
  build