From db4972da42c705e2949bb725b72f536fb8ad7d1a Mon Sep 17 00:00:00 2001 From: Levi Neuwirth Date: Thu, 23 Apr 2026 09:13:02 -0400 Subject: [PATCH] reserve neuropose name on PyPI via 0.1.0.dev0 squat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With the Paper A sprint starting ahead of the public release, squatting the PyPI name now avoids the risk of a namesquatter grabbing it once the project surfaces on arXiv or JOSS. The 0.1.0.dev0 version is a PEP 440 dev release — pip install neuropose won't resolve to it without --pre, so no accidental installs until 0.1.0 final. PYPI_README.md is a minimal PyPI-specific project page: name- reserved notice, pointer at the source URL, author list. Kept as a separate file from the contributor-focused README so the two can evolve independently — README.md speaks to someone cloning the repo, PYPI_README.md speaks to someone landing on the PyPI page. --- PYPI_README.md | 16 ++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 PYPI_README.md diff --git a/PYPI_README.md b/PYPI_README.md new file mode 100644 index 0000000..00bdd12 --- /dev/null +++ b/PYPI_README.md @@ -0,0 +1,16 @@ +# NeuroPose + +3D human pose estimation pipeline for clinical movement research, +built on [MeTRAbs](https://github.com/isarandi/metrabs). + +**Status:** pre-release. This is the reserved PyPI name for the +upcoming 0.1.0 release. The first public release is in preparation — +it will land with an accompanying engineering paper (JOSS submission). + +- **Source:** +- **License:** MIT +- **Authors:** Liqi Shu, Levi Neuwirth, David Man, Praneeth Tummala + (Brown University, Shu Lab) + +Until 0.1.0 ships, `pip install neuropose` will resolve to nothing +useful; wait for the release announcement at the source URL above. diff --git a/pyproject.toml b/pyproject.toml index 8ce14c7..b0bc531 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "neuropose" version = "0.1.0.dev0" description = "3D human pose estimation pipeline for clinical movement research, built on MeTRAbs." -readme = "README.md" +readme = "PYPI_README.md" license = { file = "LICENSE" } requires-python = ">=3.11,<3.12" authors = [