-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Docs] simplify metadata in README example pyproject.toml
- Loading branch information
Showing
1 changed file
with
1 addition
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,13 +56,9 @@ and tell py-build-cmake how to build your CMake project. For example: | |
```toml | ||
[project] # Project metadata | ||
name = "example-project" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
readme = "README.md" | ||
license = { "file" = "LICENSE" } | ||
authors = [{ "name" = "Pieter P", "email" = "[email protected]" }] | ||
keywords = ["some", "keywords"] | ||
classifiers = ["Topic :: Scientific/Engineering"] | ||
urls = { "Documentation" = "https://tttapa.github.io/py-build-cmake" } | ||
dependencies = ["numpy"] | ||
dynamic = ["version", "description"] | ||
|
||
|