1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
# About
`setuptools-scm` extracts Python package versions from `git` or `hg` metadata
instead of declaring them as the version argument
or in a Source Code Managed (SCM) managed file.
Additionally `setuptools-scm` provides `setuptools` with a list of
files that are managed by the SCM
(i.e. it automatically adds all the SCM-managed files to the sdist).
Unwanted files must be excluded via `MANIFEST.in`
or [configuring Git archive][git-archive-docs].
!!! warning "Automatic File Inclusion Behavior"
**Important:** Simply installing `setuptools-scm` as a build dependency will automatically enable its file finder, which includes **all SCM-tracked files** in your source distributions. This happens even if you're not using setuptools-scm for versioning.
- ✅ **Expected**: All Git/Mercurial tracked files will be included in your sdist
- ⚠️ **Surprise**: This includes development files, configs, tests, docs, etc.
- 🛠️ **Control**: Use `MANIFEST.in` to exclude unwanted files
See the [File Finder Documentation](usage.md#file-finders-hook-makes-most-of-manifestin-unnecessary) for details.
[git-archive-docs]: usage.md#builtin-mechanisms-for-obtaining-version-numbers
## Basic usage
### With setuptools
Note: `setuptools-scm>=8` intentionally doesn't depend on setuptools to ease non-setuptools usage.
Please ensure a recent version of setuptools is installed (minimum: >=61, recommended: >=80 for best compatibility).
Support for setuptools <80 is deprecated and will be removed in a future release.
**Simplified setup (recommended for basic usage):**
```toml title="pyproject.toml"
[build-system]
requires = ["setuptools>=80", "setuptools-scm[simple]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "example"
# Important: Remove any existing version declaration
# version = "0.0.1"
dynamic = ["version"]
# No additional configuration needed!
```
**With custom configuration:**
```toml title="pyproject.toml"
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "example"
dynamic = ["version"]
[tool.setuptools_scm]
# Custom configuration options go here
```
!!! tip "Recommended Tag Format"
Use the **"v" prefix** for your version tags for best compatibility:
```bash
git tag v1.0.0
git tag v1.1.0
git tag v2.0.0-rc1
```
This is a widely adopted convention that works well with setuptools-scm and other tools.
See the [Version Tag Formats](usage.md#version-tag-formats) section for more details.
### With hatch
[Hatch-vcs](https://github.com/ofek/hatch-vcs) integrates with setuptools-scm
but provides its own configuration options,
please see its [documentation](https://github.com/ofek/hatch-vcs#readme)
|