Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Changed
- [Python] PEP 639 licence metadata specification ([#361](https://github.com/cucumber/cucumber-expressions/pull/361))

## [18.0.1] - 2024-10-28
### Fixed
Expand Down
42 changes: 24 additions & 18 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,16 @@
[tool.poetry]
[project]
name = "cucumber-expressions"
version = "18.0.1"
description = "Cucumber Expressions - a simpler alternative to Regular Expressions"
authors = ["Jason Allen <[email protected]>"]
license = "MIT"

readme = "README.md"

packages = [
{ include = "cucumber_expressions"}
authors = [
{name = "Jason Allen", email = "[email protected]"},
]
include = [
{ path = "tests", format = "sdist" }
keywords = ["cucumber", "BDD", "testing", "expressions"]
license = "MIT"
license-files = [
"LICENSE"
]

homepage = "https://github.com/cucumber/cucumber-expressions"
repository = "https://github.com/cucumber/cucumber-expressions"
documentation = "https://github.com/cucumber/cucumber-expressions"

keywords = ["BDD", "testing", "cucumber", "expressions"]

classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
Expand All @@ -35,7 +26,22 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: MIT License", # for compatibility with tooling such as pip-licenses",
]

[project.urls]
Homepage = "https://github.com/cucumber/cucumber-expressions"
Repository = "https://github.com/cucumber/cucumber-expressions.git"
Download = "https://pypi.python.org/pypi/cucumber-expressions"
Issues = "https://github.com/cucumber/cucumber-expressions/issues"
Changelog = "https://github.com/cucumber/cucumber-expressions/releases"

[tool.poetry]
packages = [
{ include = "cucumber_expressions"}
]
include = [
{ path = "tests", format = "sdist" }
]

[tool.poetry.dependencies]
Expand All @@ -47,7 +53,7 @@ pytest = "^8.0.0"
PyYAML = "^6.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=2.2.0"]
build-backend = "poetry.core.masonry.api"

[tool.isort]
Expand Down
Loading