aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-03-29 14:12:30 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-03-29 14:12:30 -0400
commita04851c3e7b7e2b87f62d2de7e54c97c87881fcc (patch)
tree260bc963e15ea035423649f6397c82c9a4d496f5 /setup.cfg
parentca90f3cf6b2604f49256f04ff8147dfee707ce59 (diff)
downloadexternal_python_setuptools-a04851c3e7b7e2b87f62d2de7e54c97c87881fcc.tar.gz
external_python_setuptools-a04851c3e7b7e2b87f62d2de7e54c97c87881fcc.tar.bz2
external_python_setuptools-a04851c3e7b7e2b87f62d2de7e54c97c87881fcc.zip
Attempting a new streamlined, Travis-powered release process.
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]