diff --git a/CHANGELOG.md b/CHANGELOG.md index 360e414..fb8bf60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ... +## [v0.1.1] +### Fixed +- fixed urls field in pyproject.toml + ## [v0.1.0] ### Fixed - c files were accidentally pushed to source dist. Now @@ -26,7 +30,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - release to pypi -[Unreleased]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.1.1...HEAD +[v0.1.1]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.1.0...v0.1.1 [v0.1.0]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.0.3...v0.1.0 [v0.0.3]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.0.2...v0.0.3 [v0.0.2]: https://github.com/pfizer-opensource/bigwig-loader/compare/v0.0.1...v0.0.2 diff --git a/pyproject.toml b/pyproject.toml index aa916df..446682e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,6 @@ name = "bigwig_loader" authors = [ {name = "Joren Retel", email = "joren.retel@pfizer.com"}, ] -url = "https://github.com/pfizer-opensource/bigwig-loader" description = "Machine Learning Data Loader for Collections of BigWig Files" readme = "README.md" requires-python = ">=3.10" @@ -47,6 +46,9 @@ dependencies = [ ] dynamic = ["version"] +[project.urls] +homepage = "https://github.com/pfizer-opensource/bigwig-loader" + [project.optional-dependencies] test = ["mypy", "pytest", "pyBigWig"] dev = ["bigwig_loader[test]", "black", "isort", "bandit", "pip-tools", "pre-commit"]