@@ -18,7 +18,7 @@ system, and maybe making new tarballs.
18
18
## Quick Install
19
19
20
20
* download https://github.com/warner/python-versioneer/raw/master/versioneer.py
21
- * copy versioneer.py into the top of your source tree
21
+ * copy ` versioneer.py ` into the top of your source tree
22
22
* follow the instructions in its docstring
23
23
24
24
## Version Identifiers
@@ -57,13 +57,13 @@ uncommitted changes.
57
57
58
58
The version identifier is used for multiple purposes:
59
59
60
- * to allow the module to self-identify its version: myproject.__ version__
60
+ * to allow the module to self-identify its version: ` myproject.__version__ `
61
61
* to choose a name and prefix for a 'setup.py sdist' tarball
62
62
63
63
64
64
## Theory Of Operation
65
65
66
- This tool currently provides one script, named " versioneer.py" . To
66
+ This tool currently provides one script, named ` versioneer.py ` . To
67
67
versioneer-enable your project, copy it into the top of your source tree,
68
68
then follow the instructions in its docstring. This includes adding several
69
69
lines to your setup.py (to teach the tool where your ` _version.py ` will live,
@@ -97,10 +97,10 @@ restriction will be fixed eventually (see issue #12).
97
97
98
98
This tool is designed to make it easily extended to other version-control
99
99
systems: all VCS-specific components are in separate directories like
100
- src/git/ . The top-level ' versioneer.py' script is assembled from these
100
+ src/git/ . The top-level ` versioneer.py ` script is assembled from these
101
101
components by running make-versioneer.py . In the future, make-versioneer.py
102
102
will take a VCS name as an argument, and will construct a version of
103
- versioneer.py that is specific to the given VCS. It might also take the
103
+ ` versioneer.py ` that is specific to the given VCS. It might also take the
104
104
configuration arguments that are currently provided manually during
105
105
installation by editing setup.py . Alternatively, it might go the other
106
106
direction and include code from all supported VCS systems, reducing the
0 commit comments