Compare commits

..

2 commits

Author SHA1 Message Date
5b4f102c2f bump: version 0.1.0rc0 → 0.1.0rc1 2024-11-01 12:17:44 +01:00
f911c7dbea feat: first release 2024-11-01 12:17:33 +01:00
3 changed files with 41 additions and 1 deletions

View file

@ -1,4 +1,4 @@
## 0.1.0rc0 (2024-11-01) ## 0.1.0rc1 (2024-11-01)
### Feat ### Feat

40
pyproject.toml Normal file
View file

@ -0,0 +1,40 @@
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.user_data_file"
version = "0.1.0rc1"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "Rougail user_data file"
requires-python = ">=3.8"
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 = [
"rougail ~= 1.1.0",
]
[project.urls]
Home = "https://forge.cloud.silique.fr/stove/rougail-user-data-file"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
changelog_merge_prerelease = true

0
tests/__init__.py Normal file
View file