-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from 4dn-dcic/poetry_update
Restore command line usage and update documentation, bump version
- Loading branch information
Showing
2 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
[tool.poetry] | ||
name = "hic2cool" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
description = """Converter between hic files (from juicer) and single-resolution or multi-resolution cool files (for cooler). Both hic and cool files describe Hi-C contact matrices. Intended to be lightweight, this can be used as an imported package or a stand-alone Python tool for command line conversion.""" | ||
authors = ["Carl Vitzthum <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -36,6 +36,12 @@ pandas = ">=1.0" | |
h5py = ">=2.5.0" | ||
cooler = "0.9.3" | ||
|
||
|
||
[tool.poetry.plugins] | ||
|
||
[tool.poetry.plugins.console_scripts] | ||
"hic2cool" = "hic2cool.__main__:main" | ||
|
||
[build-system] | ||
requires = ["poetry_core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |