Compare commits

..

2 commits

Author SHA1 Message Date
b2936a53db bump: version 0.5.0 → 0.6.0rc0 2024-10-31 18:19:55 +01:00
41bb650d5b feat: pyproject.toml 2024-10-31 18:19:24 +01:00
2 changed files with 51 additions and 0 deletions

10
CHANGELOG.md Normal file
View file

@ -0,0 +1,10 @@
## 0.6.0rc0 (2024-10-31)
### Feat
- pyproject.toml
- portage to tiramisu 5.0
### Fix
- only first value

41
pyproject.toml Normal file
View file

@ -0,0 +1,41 @@
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[project]
name = "tiramisu_cmdline_parser"
version = "0.6.0rc0"
authors = [
{name = "Emmanuel Garette", email = "gnunux@gnunux.info"},
]
readme = "README.md"
description = "command-line parser using Tiramisu"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Natural Language :: French",
]
dependencies = [
"tiramisu ~= 5.0.0",
]
[project.urls]
Home = "https://forge.cloud.silique.fr/stove/tiramisu-cmdline-parser"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true