mirror of
https://github.com/ansible/mazer.git
synced 2026-02-05 12:45:17 +01:00
46 lines
1.0 KiB
INI
46 lines
1.0 KiB
INI
[bumpversion]
|
|
current_version = 1.0.0
|
|
commit = True
|
|
tag = True
|
|
|
|
[metadata]
|
|
name = mazer
|
|
description = Ansible content manager
|
|
author = Red Hat, Inc.
|
|
author_email = info@ansible.com
|
|
classifiers =
|
|
Development Status :: 2 - Pre-Alpha
|
|
Intended Audience :: Developers
|
|
License :: OSI Approved :: Apache Software License
|
|
Natural Language :: English
|
|
Programming Language :: Python :: 2
|
|
Programming Language :: Python :: 2.6
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.6
|
|
|
|
[bumpversion:file:setup.py]
|
|
search = version='{current_version}'
|
|
replace = version='{new_version}'
|
|
|
|
[bumpversion:file:ansible_galaxy_cli/__init__.py]
|
|
search = __version__ = '{current_version}'
|
|
replace = __version__ = '{new_version}'
|
|
|
|
[bumpversion:file:ansible_galaxy/__init__.py]
|
|
search = __version__ = '{current_version}'
|
|
replace = __version__ = '{new_version}'
|
|
|
|
[bdist_wheel]
|
|
universal = 1
|
|
|
|
[flake8]
|
|
exclude = docs
|
|
|
|
[aliases]
|
|
test = pytest
|
|
|
|
[tool:pytest]
|
|
collect_ignore = ['setup.py']
|
|
|