mirror of
https://github.com/orhun/git-cliff.git
synced 2024-12-01 23:26:22 +03:00
10b7ab829f
* 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.
20 lines
490 B
TOML
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"
|