Skip to content

Commit

Permalink
fix package metadata issue (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
ariebovenberg authored Jan 31, 2025
1 parent 8ffefb0 commit b7ff679
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ maintainers = [
]
readme = "README.md"
version = "0.6.17"
license = {text = "MIT"}
description = "Modern datetime library for Python"
requires-python = ">=3.9"
classifiers = [
Expand Down Expand Up @@ -87,6 +88,12 @@ ignore_missing_imports = true
[tool.setuptools.packages]
find = { where = ["pysrc"] }

[tool.setuptools]
# FUTURE: remove this once PEP639 compatibility issue is solved
# Note that maturin build still includes the license files in the wheel.
# Nothing to worry about.
license-files = []

# Notes about the build configuration:
# We need setuptools_rust to support enabling/disabling building the Rust
# extension from source distributions.
Expand All @@ -95,6 +102,7 @@ find = { where = ["pysrc"] }
[tool.maturin]
python-source = "pysrc"
module-name = "whenever._whenever"
# include = ["LICENSE*"]

[build-system]
build-backend = "setuptools.build_meta"
Expand Down

0 comments on commit b7ff679

Please sign in to comment.