aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rwxr-xr-xsetup.cfg17
1 files changed, 15 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index a6da2c77..72967fa4 100755
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,8 +1,10 @@
[egg_info]
-tag_build = dev
+tag_build = .post
+tag_date = 1
[aliases]
-release = egg_info -RDb ''
+clean_egg_info = egg_info -RDb ''
+release = clean_egg_info build_sphinx sdist bdist_wheel upload_docs
source = register sdist binary
binary = bdist_egg upload --show-response
test = pytest
@@ -20,3 +22,14 @@ formats = gztar zip
[wheel]
universal=1
+
+[bumpversion]
+current_version = 20.5
+commit = True
+tag = True
+parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
+serialize=
+ {major}.{minor}.{patch}
+ {major}.{minor}
+
+[bumpversion:file:setup.py]