{"id":22393744,"url":"https://github.com/artisanofcode/poetry-stickywheel-plugin","last_synced_at":"2025-08-11T22:38:16.209Z","repository":{"id":36962031,"uuid":"504542659","full_name":"artisanofcode/poetry-stickywheel-plugin","owner":"artisanofcode","description":"A poetry plugin to pin local folder dependencies to specific versions when building packages.","archived":false,"fork":false,"pushed_at":"2024-02-17T00:38:07.000Z","size":157,"stargazers_count":16,"open_issues_count":8,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-08T06:07:13.181Z","etag":null,"topics":["poetry","poetry-plugin","python","python-package"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/artisanofcode.png","metadata":{"funding":{"github":["artisanofcode"],"ko_fi":"artisanofcode"},"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-06-17T13:21:27.000Z","updated_at":"2025-06-22T04:02:11.000Z","dependencies_parsed_at":"2025-07-08T06:07:01.475Z","dependency_job_id":"96e66558-dd70-45ec-acb6-37c2f862422a","html_url":"https://github.com/artisanofcode/poetry-stickywheel-plugin","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/artisanofcode/poetry-stickywheel-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artisanofcode%2Fpoetry-stickywheel-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artisanofcode%2Fpoetry-stickywheel-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artisanofcode%2Fpoetry-stickywheel-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artisanofcode%2Fpoetry-stickywheel-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/artisanofcode","download_url":"https://codeload.github.com/artisanofcode/poetry-stickywheel-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artisanofcode%2Fpoetry-stickywheel-plugin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269969591,"owners_count":24505430,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["poetry","poetry-plugin","python","python-package"],"created_at":"2024-12-05T05:07:42.467Z","updated_at":"2025-08-11T22:38:16.175Z","avatar_url":"https://github.com/artisanofcode.png","language":"Python","funding_links":["https://github.com/sponsors/artisanofcode","https://ko-fi.com/artisanofcode"],"categories":[],"sub_categories":[],"readme":"# Poetry StickyWheel Plugin\n\n\u003cp class=\"lead\"\u003e\nA poetry plugin to pin version dependencies when building packages with local folder dependencies.\n\u003c/p\u003e\n\n## 🛠 Installing\n\n```\npoetry self add poetry-stickywheel-plugin\n```\n\n## 📚 Help\n\nThis plugin will rewrite folder dependencies in your poetry projects dependencies with version dependencies.\n\nThe version will be extracted from the dependencies pyproject.toml and applied as a semver match.\n\nAssuming a `pyproject.toml` such as:\n\n```\n[tool.poetry]\nname = \"a\"\nversion = \"0.1.0\"\ndescription = \"\"\nauthors = []\nreadme = \"README.md\"\n\n[tool.poetry.dependencies]\nb = {path = \"../b\", develop = true}\n```\n\nand the dependency `pyproject.toml`\n\n```\n[tool.poetry]\nname = \"b\"\nversion = \"1.2.3\"\ndescription = \"\"\nauthors = []\nreadme = \"README.md\"\n```\n\nthe dependency will be rewritten as if it had been defined as:\n\n```\nb = \"^1.2.3\"\n```\n\n## Configuration\n\nYou can define a section in your `pyproject.toml` file named `tool.stickywheel`, to configure various options.\n\n### Dependency constraint strategy\n\nThe default strategy is `semver` (described in the \"Help\" section above), but there are other choices:\n\n| strategy  | version | result    |\n|-----------|---------|-----------|\n| `semver`  | `1.2.3` | `^1.2.3`  |\n| `minimum` | `1.2.3` | `\u003e=1.2.3` |\n| `exact`   | `1.2.3` | `1.2.3`   |\n\nTo override the default, add `strategy` to the configuration. For example:\n\n```toml\n[tool.stickywheel]\nstrategy = \"exact\"\n```\n\n## ⚖️ Licence\n\nThis project is licensed under the [MIT licence][mit_licence].\n\nAll documentation and images are licenced under the \n[Creative Commons Attribution-ShareAlike 4.0 International License][cc_by_sa].\n\n## 📝 Meta\n\nThis project uses [Semantic Versioning][semvar].\n\n[discussions]: https://github.com/artisanofcode/poetry-stickywheel-plugin/discussions\n[mit_licence]: http://dan.mit-license.org/\n[cc_by_sa]: https://creativecommons.org/licenses/by-sa/4.0/\n[semvar]: http://semver.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartisanofcode%2Fpoetry-stickywheel-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartisanofcode%2Fpoetry-stickywheel-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartisanofcode%2Fpoetry-stickywheel-plugin/lists"}