Skip to content

Commit e0744ff

Browse files
authored
PEP 639 compliant licensing meta data (#38)
1 parent c0e021e commit e0744ff

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Changelog
33

44
## Next Release
55
* Drop support for Python 3.7, 3.8, and 3.9.
6+
* Update licensing meta data to be PEP 639 compliant.
67

78

89
## Next Release

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@
1616
[project]
1717
name = "neo4j-rust-ext"
1818
description = "Rust Extensions for a Faster Neo4j Bolt Driver for Python"
19-
license = {text = "Apache License, Version 2.0"}
19+
license = "Apache-2.0"
20+
license-files = [
21+
"LICENSE*.txt",
22+
"NOTICE*.txt",
23+
]
2024
readme = "README.md"
2125
authors = [
2226
{name = "Neo4j, Inc.", email = "[email protected]"},
@@ -29,7 +33,6 @@ keywords = ["neo4j", "graph", "database"]
2933
classifiers = [
3034
"Development Status :: 5 - Production/Stable",
3135
"Intended Audience :: Developers",
32-
"License :: OSI Approved :: Apache Software License",
3336
"Operating System :: OS Independent",
3437
"Programming Language :: Python :: 3.10",
3538
"Programming Language :: Python :: 3.11",
@@ -55,7 +58,7 @@ pandas = ["neo4j[pandas]"]
5558
pyarrow = ["neo4j[pyarrow]"]
5659

5760
[build-system]
58-
requires = ["maturin ~= 1.8.3"]
61+
requires = ["maturin ~= 1.9.0"]
5962
build-backend = "maturin"
6063

6164
[tool.maturin]

0 commit comments

Comments
 (0)