|
48 | 48 |
|
49 | 49 | * `pip install versioneer` to somewhere to your $PATH |
50 | 50 | * add a `[versioneer]` section to your setup.cfg (see below) |
51 | | -* run `versioneer install` in your source tree, commit the results |
| 51 | +* run `python versioneer.py setup` in your source tree, commit the results |
52 | 52 |
|
53 | 53 | ## Version Identifiers |
54 | 54 |
|
|
192 | 192 | * modify your `MANIFEST.in` to include both `versioneer.py` and the |
193 | 193 | generated `__version.py` in sdist tarballs |
194 | 194 |
|
195 | | - `versioneer install` will complain about any problems it finds with your |
| 195 | + `python versioneer.py setup` will complain about any problems it finds with your |
196 | 196 | `setup.py` or `setup.cfg`. Run it multiple times until you have fixed all |
197 | 197 | the problems. |
198 | 198 |
|
|
203 | 203 | cmdclass=versioneer.get_cmdclass(), |
204 | 204 |
|
205 | 205 | * 4: commit these changes to your VCS. To make sure you won't forget, |
206 | | - `versioneer install` will mark everything it touched for addition using |
| 206 | + `python versioneer.py setup` will mark everything it touched for addition using |
207 | 207 | `git add`. Don't forget to add `setup.py` and `setup.cfg` too. |
208 | 208 |
|
209 | 209 | ## Post-Installation Usage |
|
309 | 309 | * install the new Versioneer (`pip install -U versioneer` or equivalent) |
310 | 310 | * edit `setup.cfg`, if necessary, to include any new configuration settings |
311 | 311 | indicated by the release notes |
312 | | -* re-run `versioneer install` in your source tree, to replace |
| 312 | +* re-run `python versioneer.py setup` in your source tree, to replace |
313 | 313 | `SRC/__version.py` |
314 | 314 | * commit any changed files |
315 | 315 |
|
|
0 commit comments