Skip to content

Commit

Permalink
added bumpversin configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
MainRo committed Oct 31, 2018
1 parent 33f5f05 commit a0f7a04
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cyclotron_aio/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-

__author__ = """Romain Picard"""
__email__ = 'romain.picard@oakbits.com'
__version__ = '0.5.0'
22 changes: 22 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[bumpversion]
current_version = 0.5.0
commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'

[bumpversion:file:cyclotron_aio/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bdist_wheel]
universal = 1

[flake8]
exclude = docs

[aliases]
# Define setup.py command aliases here

0 comments on commit a0f7a04

Please sign in to comment.