Skip to content

Commit

Permalink
Merge pull request #80 from robomics/rename-package
Browse files Browse the repository at this point in the history
Rename package from stripepy to stripepy-hic
  • Loading branch information
rea1991 authored Dec 20, 2024
2 parents 8328163 + c89a279 commit e40619a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ requires = [
build-backend = "hatchling.build"

[project]
name = "stripepy"
name = "stripepy-hic"
description = "StripePy recognizes architectural stripes in 3C and Hi-C contact maps using geometric reasoning"
dynamic = ["version"]
authors = [
Expand Down Expand Up @@ -70,11 +70,11 @@ dependencies = [
test = [
"pytest",
"pytest-cov",
"stripepy",
"stripepy-hic",
]

dev = [
"stripepy[test]",
"stripepy-hic[test]",
"black[jupyter]",
"build",
"isort",
Expand Down
2 changes: 1 addition & 1 deletion src/stripepy/IO.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ def init_file(self, matrix_file: hictkpy.File, normalization: Optional[str], met
self._h5.attrs["format"] = "HDF5::StripePy"
self._h5.attrs["format-url"] = "https://github.com/paulsengroup/StripePy"
self._h5.attrs["format-version"] = 1
self._h5.attrs["generated-by"] = f"StripePy v{version('stripepy')}"
self._h5.attrs["generated-by"] = f"StripePy v{version('stripepy-hic')}"
self._h5.attrs["metadata"] = json.dumps(metadata, indent=2)
self._h5.attrs["normalization"] = normalization

Expand Down
2 changes: 1 addition & 1 deletion src/stripepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

from .main import main

__version__ = version("stripepy")
__version__ = version("stripepy-hic")
2 changes: 1 addition & 1 deletion src/stripepy/cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def _make_cli() -> argparse.ArgumentParser:
"-v",
"--version",
action="version",
version="%(prog)s {version}".format(version=version("stripepy")),
version="%(prog)s {version}".format(version=version("stripepy-hic")),
)

return cli
Expand Down

0 comments on commit e40619a

Please sign in to comment.