https://github.com/JarronL/pynrc
Revision 00e389cd15b329e717b944cb67cecd434aff44cd authored by Jarron Leisenring on 22 December 2021, 21:48:05 UTC, committed by Jarron Leisenring on 22 December 2021, 21:48:05 UTC
1 parent a8a30f9
Raw File
Tip revision: 00e389cd15b329e717b944cb67cecd434aff44cd authored by Jarron Leisenring on 22 December 2021, 21:48:05 UTC
test turning off `on_rtd` switch
Tip revision: 00e389c
setup.cfg
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and 3. 
# If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1

[bumpversion]
current_version = 1.0.0
commit = True
tag = True

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

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

[ah_bootstrap]
auto_use = True

[flake8]
exclude = docs

[aliases]
# Define setup.py command aliases here
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']
back to top