Bump version.

This commit is contained in:
Julien Palard 2023-03-13 22:48:05 +01:00
parent ffda664e9b
commit ed06613f8e
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
2 changed files with 36 additions and 27 deletions

View File

@ -1,3 +1,39 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ansible-parallel"
# Format is YYYY.MM.DD (https://calver.org/)
version = "2023.3.13"
description = "Run ansible playbooks in parallel."
authors = [
{ name = "Julien Palard", email = "julien@palard.fr" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.7"
[project.readme]
file = "README.md"
content-type = "text/markdown; charset=UTF-8"
[project.license]
text = "MIT License"
[project.urls]
Homepage = "https://git.afpy.org/mdk/ansible-parallel"
[project.scripts]
ansible-parallel = "ansible_parallel:main"
[tool.setuptools]
py-modules = [
"ansible_parallel",
]
include-package-data = false

View File

@ -1,27 +0,0 @@
[metadata]
name = ansible-parallel
# Format is YYYY.MM.DD (https://calver.org/)
version = 2021.1.22
description = Run ansible playbooks in parallel.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
author = Julien Palard
author_email = julien@palard.fr
url = https://github.com/meltygroup/ansible-parallel
license = MIT License
classifiers =
Development Status :: 4 - Beta
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
py_modules = ansible_parallel
python_requires = >= 3.7
[options.entry_points]
console_scripts = ansible-parallel=ansible_parallel:main