{"id":21962528,"url":"https://github.com/biocpy/assorthead","last_synced_at":"2026-02-24T01:08:21.973Z","repository":{"id":191906672,"uuid":"685656401","full_name":"BiocPy/assorthead","owner":"BiocPy","description":"Assorted C++ headers, vendored into a Python package.","archived":false,"fork":false,"pushed_at":"2025-12-13T10:29:10.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-22T11:03:41.872Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BiocPy.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-31T17:57:54.000Z","updated_at":"2025-12-13T10:19:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"c664467f-5ee0-4c0f-b800-ad9feb1ef208","html_url":"https://github.com/BiocPy/assorthead","commit_stats":null,"previous_names":["biocpy/assorthead"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/BiocPy/assorthead","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiocPy%2Fassorthead","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiocPy%2Fassorthead/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiocPy%2Fassorthead/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiocPy%2Fassorthead/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BiocPy","download_url":"https://codeload.github.com/BiocPy/assorthead/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BiocPy%2Fassorthead/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29765743,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T21:02:23.375Z","status":"ssl_error","status_checked_at":"2026-02-23T20:58:31.539Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-29T10:43:16.093Z","updated_at":"2026-02-24T01:08:21.968Z","avatar_url":"https://github.com/BiocPy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- These are examples of badges you might want to add to your README:\n     please update the URLs accordingly\n\n[![ReadTheDocs](https://readthedocs.org/projects/assorthead/badge/?version=latest)](https://assorthead.readthedocs.io/en/stable/)\n[![Coveralls](https://img.shields.io/coveralls/github/\u003cUSER\u003e/assorthead/main.svg)](https://coveralls.io/r/\u003cUSER\u003e/assorthead)\n[![Conda-Forge](https://img.shields.io/conda/vn/conda-forge/assorthead.svg)](https://anaconda.org/conda-forge/assorthead)\n[![Twitter](https://img.shields.io/twitter/url/http/shields.io.svg?style=social\u0026label=Twitter)](https://twitter.com/assorthead)\n--\u003e\n\n[![PyPI-Server](https://img.shields.io/pypi/v/assorthead.svg)](https://pypi.org/project/assorthead/)\n![Unit tests](https://github.com/BiocPy/assorthead/actions/workflows/pypi-test.yml/badge.svg)\n\n# Assorted C++ headers\n\n**assorthead** vendors an assortment of header-only C++ libraries for compilation of downstream packages.\nThis centralizes the acquisition and versioning of these libraries for a smoother development experience.\nDownstream dependencies include\n[**mattress**](https://github.com/tatami-inc/mattress),\n[**knncolle**](https://github.com/knncolle/knncolle-py),\n[**scranpy**](https://github.com/libscran/scranpy)\nand [**singler**](https://github.com/SingleR-inc/singler),\nto name a few.\n\nDevelopers can install **assorthead** via the usual `pip` commands:\n\n```shell\npip install assorthead\n```\n\nWe add all headers to the compiler's search path using the `include_dirs` argument in the `setup()` command in our `setup.py`:\n\n```python\nsetup(\n    use_scm_version={\"version_scheme\": \"no-guess-dev\"},\n    ext_modules=[\n        Extension(\n            \"foo.core\",\n            [\n                \"src/lib/foo.cpp\",\n                \"src/lib/bar.cpp\",\n            ],\n            include_dirs=[\n                assorthead.includes(),\n            ],\n            language=\"c++\",\n            extra_compile_args=[\n                \"-std=c++17\",\n            ],\n        )\n    ],\n)\n```\n\nSee [`extern/manifest.csv`](extern/manifest.csv) for the list of vendored libraries and their versions.\nLicenses are available in the directory returned by the `licenses()` function.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbiocpy%2Fassorthead","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbiocpy%2Fassorthead","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbiocpy%2Fassorthead/lists"}