1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-09-11 06:55:38 +03:00
git-cliff/pypi/pyproject.toml
Radu Suciu 10b7ab829f
chore(pypi): update maturin version (#539)
* chore(pypi): add .gitignore for python wheel build

* chore(pypi): move maturin package metadata to pyproject.toml

use of `[package.metadata.maturin.name]` is deprecated and warned against: `Warning: specify [package.metadata.maturin] name in Cargo.toml is deprecated, use module-name in [tool.maturin] section in pyproject.toml instead`

* chore(pypi): update maturin version

the previously pinned version was way too specific and maturin has since had a 1.0 release -- so let's just stick with that.
2024-03-07 10:38:38 +01:00

20 lines
490 B
TOML

[build-system]
requires = ["maturin>=1.5,<2"]
build-backend = "maturin"
[project]
name = "git-cliff"
requires-python = ">=3.7"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.maturin]
bindings = "bin"
manifest-path = "../git-cliff/Cargo.toml"
module-name = "git-cliff"